style : update view project

Deskripsi:
- add view detail project
- add view update progres

No issue
This commit is contained in:
lukman
2024-07-09 16:58:36 +08:00
parent e5ad1cf49f
commit 0c8bd50d34
5 changed files with 34 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
import React from 'react';
import CreateProject from '../components/create_project';
export default function ViewCreateProject() {
export default function ViewCreateProject({ searchParams }: { searchParams: any }) {
return (
<CreateProject />
<CreateProject searchParams={searchParams} />
);
}

View File

@@ -0,0 +1,9 @@
import React from 'react';
import DetailProject from '../components/detail_project';
export default function ViewDetailProject() {
return (
<DetailProject/>
);
}

View File

@@ -0,0 +1,9 @@
import React from 'react';
import FileSave from '../components/file_save';
export default function ViewFileSave() {
return (
<FileSave/>
);
}

View File

@@ -10,23 +10,23 @@ const dataFilter = [
name: 'Semua Proyek'
},
{
id: 1,
id: 2,
name: 'Proyek Dinas'
},
{
id: 1,
id: 3,
name: 'Proyek Lpd'
},
{
id: 1,
id: 4,
name: 'Proyek Lembaga 1'
},
{
id: 1,
id: 5,
name: 'Proyek Lembaga 2'
},
{
id: 1,
id: 6,
name: 'Proyek Lembaga 3'
},
]

View File

@@ -0,0 +1,9 @@
import React from 'react';
import UpdateProgres from '../components/update_progres';
export default function ViewUpdateProgres() {
return (
<UpdateProgres />
);
}