UserList.js 382 B

123456789101112131415161718192021222324
  1. import React from 'react'
  2. class UserList extends React.Component {
  3. render () {
  4. return (
  5. <div>
  6. <table>
  7. <thead>
  8. <tr>
  9. <th></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <tr>
  14. <td></td>
  15. </tr>
  16. </tbody>
  17. </table>
  18. </div>
  19. )
  20. }
  21. }
  22. export default UserList