admin管理员组文章数量:1344235
Pretty simple, can someone explain to me what the part between the curly braces is?
I understand you add it and then you can remove React from say "extends React.Component" but not sure what the use of it is or the reasoning behind it.
Pretty simple, can someone explain to me what the part between the curly braces is?
I understand you add it and then you can remove React from say "extends React.Component" but not sure what the use of it is or the reasoning behind it.
Share Improve this question asked Sep 30, 2015 at 23:19 Joshua KellyJoshua Kelly 1,0639 silver badges12 bronze badges 2- What are you not understanding? you wrote so yourself, it allows you to remove boilerplate. – Amit Commented Sep 30, 2015 at 23:37
- is that all it is for though? I wanted to try and get a bit more theory on it. – Joshua Kelly Commented Oct 1, 2015 at 0:07
2 Answers
Reset to default 10It basically just allows you to import a single member if you require. In the case you provided it may not be as useful as other ones. For example:
// constants.js
export const TEST_CONST = 'HOLA';
export const OTHER_TEST_CONST = 'YO';
// someFile.js
import { TEST_CONST } from './constants';
console.log(TEST_CONST); // output: 'HOLA'
Hope that helps a little. Theres also great description of the module system on MDN.
https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Statements/import
Basically, if your module have only single export => you can export without the curly brackets. In contrast, you need use it when your module have multi export.
/module1.tsx
const App { render () {...}};
export default App;
==> import App from {'./module1.tsx'}
/module2.tsx
export const App1 { render () {...}};
export const App2 { render () {...}};
==> import { App1 } from './module2.tsx'
本文标签: javascriptimport React Componentfrom 39react39 What is thepartStack Overflow
版权声明:本文标题:javascript - import React, { Component } from 'react'; What is the {} part? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737416a2530262.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论