123456789101112131415161718192021222324 |
- import React from 'react'
- class UserList extends React.Component {
- render () {
- return (
- <div>
- <table>
- <thead>
- <tr>
- <th></th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
- )
- }
- }
- export default UserList
|