首页 > 代码库 > [React] Modify file structure

[React] Modify file structure

In React app, you might create lots of components. 

技术分享

We can use index.js to do both ‘import‘ & ‘export‘.

export {TodoForm} from ./TodoFormexport {TodoList} from ./TodoList

 

When using it, we just need to import the folder:

import {TodoForm, TodoList} from ./components/todo

 

[React] Modify file structure