Remove visual regression snapshot

This commit is contained in:
2026-01-18 13:11:20 +00:00
parent bd9482b6d4
commit 31d6334a65
9 changed files with 408 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import { PageRenderer } from '@/lib/json-ui/page-renderer'
import conversionShowcaseSchema from '@/config/pages/json-conversion-showcase.json'
import { PageSchema } from '@/types/json-ui'
export function JSONConversionShowcase() {
const schema = conversionShowcaseSchema as PageSchema
return <PageRenderer schema={schema} />
}