Skip to content

Commit 764bb53

Browse files
committed
feat(PreviewData): add initial PreviewData component with preview prop
1 parent cddfa8e commit 764bb53

File tree

1 file changed

+13
-0
lines changed
  • app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/resources/components

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from 'react'
2+
3+
interface EditProps{
4+
isPreview:boolean
5+
}
6+
7+
const PreviewData=({isPreview}: EditProps)=> {
8+
return (
9+
<div>PreviewData</div>
10+
)
11+
}
12+
13+
export default PreviewData

0 commit comments

Comments
 (0)