style : add division
This commit is contained in:
10
src/app/(application)/division/page.tsx
Normal file
10
src/app/(application)/division/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { ViewDivision } from '@/module/new_division';
|
||||
import React from 'react';
|
||||
|
||||
function Page() {
|
||||
return (
|
||||
<ViewDivision/>
|
||||
);
|
||||
}
|
||||
|
||||
export default Page;
|
||||
@@ -14,7 +14,7 @@ export default function Features() {
|
||||
<SimpleGrid
|
||||
cols={{ base: 4, sm: 4, lg: 4 }}
|
||||
>
|
||||
<Box>
|
||||
<Box onClick={() => router.push('/division')}>
|
||||
<Center>
|
||||
<ActionIcon variant="gradient"
|
||||
size={68}
|
||||
|
||||
@@ -17,7 +17,7 @@ export default function ViewDetailFeature() {
|
||||
<SimpleGrid
|
||||
cols={{ base: 4, sm: 4, lg: 4 }}
|
||||
>
|
||||
<Box>
|
||||
<Box onClick={() => router.push('/division')}>
|
||||
<Center>
|
||||
<ActionIcon variant="gradient"
|
||||
size={68}
|
||||
|
||||
3
src/module/new_division/index.ts
Normal file
3
src/module/new_division/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import ViewDivision from "./view/view_division";
|
||||
|
||||
export { ViewDivision }
|
||||
10
src/module/new_division/view/view_division.tsx
Normal file
10
src/module/new_division/view/view_division.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function ViewDivision() {
|
||||
return (
|
||||
<div>
|
||||
ViewDivision
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user