└── App.tsx /App.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import TodoList from './components/TodoList'; 3 | import UserList from './components/UserList'; 4 | 5 | const App = () => { 6 | return ( 7 |
8 | 9 |
10 | 11 |
12 | ); 13 | }; 14 | 15 | export default App; 16 | --------------------------------------------------------------------------------