File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed
src/components/blocks/questions Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 4
4
"type" : " module" ,
5
5
"scripts" : {
6
6
"dev" : " env-cmd -f .env.local vite" ,
7
- "build" : " tsc -b && vite build" ,
7
+ "build" : " tsc -b && DEBUG=vite:* vite build" ,
8
8
"lint" : " eslint ." ,
9
9
"preview" : " vite preview --port 5173 --host 0.0.0.0"
10
10
},
Original file line number Diff line number Diff line change 1
- export const AdminEditForm = ( ) => { } ;
1
+ import {
2
+ Dialog ,
3
+ DialogContent ,
4
+ DialogFooter ,
5
+ DialogHeader ,
6
+ DialogTitle ,
7
+ DialogTrigger ,
8
+ } from '@/components/ui/dialog' ;
9
+
10
+ export const AdminEditForm = ( ) => {
11
+ return (
12
+ < Dialog >
13
+ < DialogTrigger />
14
+ < DialogContent >
15
+ < DialogHeader >
16
+ < DialogTitle />
17
+ </ DialogHeader >
18
+ < DialogContent />
19
+ < DialogFooter />
20
+ </ DialogContent >
21
+ </ Dialog >
22
+ ) ;
23
+ } ;
You can’t perform that action at this time.
0 commit comments