List.jsx 114 B

12345678
  1. function List() {
  2. return (
  3. <div>
  4. <h1>List</h1>
  5. </div>
  6. )
  7. }
  8. export default List;