[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 './TodoForm'
export {TodoList} from './TodoList'

 

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

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

 

posted @ 2017-01-31 20:08  Zhentiw  阅读(176)  评论(0)    收藏  举报