style : update view project
Deskripsi: - add view detail project - add view update progres No issue
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import CreateProject from '../components/create_project';
|
import CreateProject from '../components/create_project';
|
||||||
|
|
||||||
export default function ViewCreateProject() {
|
export default function ViewCreateProject({ searchParams }: { searchParams: any }) {
|
||||||
return (
|
return (
|
||||||
<CreateProject />
|
<CreateProject searchParams={searchParams} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
9
src/module/project/view/view_detail_project.tsx
Normal file
9
src/module/project/view/view_detail_project.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import DetailProject from '../components/detail_project';
|
||||||
|
|
||||||
|
export default function ViewDetailProject() {
|
||||||
|
return (
|
||||||
|
<DetailProject/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
9
src/module/project/view/view_file_save.tsx
Normal file
9
src/module/project/view/view_file_save.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import FileSave from '../components/file_save';
|
||||||
|
|
||||||
|
export default function ViewFileSave() {
|
||||||
|
return (
|
||||||
|
<FileSave/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@@ -10,23 +10,23 @@ const dataFilter = [
|
|||||||
name: 'Semua Proyek'
|
name: 'Semua Proyek'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 2,
|
||||||
name: 'Proyek Dinas'
|
name: 'Proyek Dinas'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 3,
|
||||||
name: 'Proyek Lpd'
|
name: 'Proyek Lpd'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 4,
|
||||||
name: 'Proyek Lembaga 1'
|
name: 'Proyek Lembaga 1'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 5,
|
||||||
name: 'Proyek Lembaga 2'
|
name: 'Proyek Lembaga 2'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 6,
|
||||||
name: 'Proyek Lembaga 3'
|
name: 'Proyek Lembaga 3'
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
9
src/module/project/view/view_update_progres.tsx
Normal file
9
src/module/project/view/view_update_progres.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import UpdateProgres from '../components/update_progres';
|
||||||
|
|
||||||
|
export default function ViewUpdateProgres() {
|
||||||
|
return (
|
||||||
|
<UpdateProgres />
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user