style : add app

This commit is contained in:
lukman
2024-07-04 12:36:57 +08:00
parent 615e21e892
commit 497911d032
4 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
function Page() {
return (
<div>
Page
</div>
);
}
export default Page;

View File

@@ -0,0 +1,10 @@
import { ViewNotification } from '@/module/notification';
import React from 'react';
function Page() {
return (
<ViewNotification />
);
}
export default Page;

View File

@@ -0,0 +1,11 @@
import React from 'react';
function Page() {
return (
<div>
Page
</div>
);
}
export default Page;

View File

@@ -0,0 +1,10 @@
import { ViewProject } from '@/module/project';
import React from 'react';
function Page() {
return (
<ViewProject />
);
}
export default Page;