diff --git a/components/ContentTemplates/FormsTemplate.tsx b/components/ContentTemplates/FormsTemplate.tsx index a91d208..07d1828 100644 --- a/components/ContentTemplates/FormsTemplate.tsx +++ b/components/ContentTemplates/FormsTemplate.tsx @@ -1,8 +1,14 @@ +import dynamic from "next/dynamic" import { formsPageNavigation } from "../../data/pageNavigationLists" import { CodeBlock } from "../CodeBlock/CodeBlock" import { NavPage } from "../NavPage/NavPage" import { PageUpdated } from "../PageUpdated/PageUpdated" import { TemplateSection } from "../TemplateSection/TemplateSection" +import { formatCss, formatHtml } from "../../utils" + +const Playground = dynamic(() => import("../Playground/Playground"), { + ssr: false, +}) export const FormsTemplate = () => { return ( @@ -216,6 +222,25 @@ export const FormsTemplate = () => { screen reader user.

+ + + + + + +`), + }, + "/Wrapper.css": { + code: formatCss(`form{ color:blue;} `), + }, + }} + /> +