index.tsx 194 B

1234567891011
  1. import ConstructLayout from '@/new-components/layout/Construct';
  2. function index() {
  3. return (
  4. <ConstructLayout>
  5. <div>index</div>
  6. </ConstructLayout>
  7. );
  8. }
  9. export default index;