feat(LOY-615): cleanup profiling consent env var * feat(LOY-615): cleanup profiling consent env var Approved-by: Anton Gunnarsson
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import SignupForm from "@/components/Forms/Signup"
|
|
|
|
import type { SignupFormWrapperProps } from "@/types/components/blocks/dynamicContent"
|
|
|
|
export default async function SignupFormWrapper({
|
|
dynamic_content,
|
|
}: SignupFormWrapperProps) {
|
|
return <SignupForm {...dynamic_content} />
|
|
}
|