You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
666 B
30 lines
666 B
import React from 'react'; |
|
import BasicTable from './BasicTable'; |
|
|
|
const ReactTable3 = () => { |
|
return ( |
|
<div className="min-h-screen "> |
|
<main className="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 pt-4"> |
|
<div className="my-4 flex flex-col"> |
|
<div className="-my-2 overflow-x-auto -mx-4 sm:-mx-6 lg:-mx-8"> |
|
<div className="py-2 align-middle inline-block min-w-full"> |
|
<div className="shadow overflow-hidden border-b border-gray-200 sm:rounded-lg"> |
|
|
|
<BasicTable /> |
|
|
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
</div> |
|
|
|
) |
|
}; |
|
|
|
export default ReactTable3; |
|
|
|
|
|
|
|
|
|
|
|
|