)
diff --git a/web/app/components/datasets/formatted-text/flavours/shared.tsx b/web/app/components/datasets/formatted-text/flavours/shared.tsx
index b8102e4ebf..0ce17db7e4 100644
--- a/web/app/components/datasets/formatted-text/flavours/shared.tsx
+++ b/web/app/components/datasets/formatted-text/flavours/shared.tsx
@@ -34,7 +34,7 @@ export const SliceContent: FC = forwardRef((props, ref) => {
const { className, children, ...rest } = props
return
{children}
diff --git a/web/app/dev-preview/page.tsx b/web/app/dev-preview/page.tsx
index d25fa9777a..92263d99a0 100644
--- a/web/app/dev-preview/page.tsx
+++ b/web/app/dev-preview/page.tsx
@@ -1,5 +1,6 @@
'use client'
+import { useState } from 'react'
import { FormattedText } from '../components/datasets/formatted-text/formatted'
import { PreviewSlice } from '../components/datasets/formatted-text/flavours/preview-slice'
import { PreviewContainer } from '../components/datasets/preview/container'
@@ -8,9 +9,22 @@ import FileIcon from '../components/base/file-icon'
import { ChevronDown } from '../components/base/icons/src/vender/solid/arrows'
import Badge from '../components/base/badge'
import { DividerWithLabel } from '../components/base/divider/with-label'
+import Button from '../components/base/button'
+import { ChunkContainer, QAPreview } from '../components/datasets/chunk'
+import classNames from '@/utils/classnames'
export default function Page() {
+ const [parentChild, setParentChild] = useState(false)
+ const [vertical, setVertical] = useState(false)
+ const [qa, setQa] = useState(false)
return
+
+
+
+
+
@@ -23,13 +37,39 @@ export default function Page() {
}>
-
-
-
-
-
-
-
+
{parentChild
+ ? Array.from({ length: 4 }, (_, i) => {
+ return
+
+ {Array.from({ length: 4 }, (_, i) => {
+ return
+ })}
+
+
+ })
+ : Array.from({ length: 2 }, (_, i) => {
+ return
+ {
+ qa
+ ?
+ : 'In December of 2009, I was preparing to teach SI502 - Networked Programming at the University of Michigan for the fifth semester in a row and decided it was time to write a Python textbook that focused on exploring data instead of understanding algorithms and abstractions. My goal in SI502 is to teach people life-long data handling skills using Python. Few of my students were planning to be professional computer programmers. Instead, they planned be librarians, managers, lawyers, biologists, economists, etc. who happened to want to skillfully use technology in their chosen field.'
+ }
+
+ })
+ }