mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-24 07:19:04 -06:00
* format code * fix building issue in database package * update turbo config and package jsons * update error package with more information and license * fix typescript issues in ui package * update package-lock * update packages * clean dependencies in web * clean up dependencies in demo & formbricks-com * remove unsused template file * remove legacy capture endpoint * remove unfinished client endpoints * clean up unused functions * fix formbricks not loading on invalid session * update readme
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
import { cn } from "@formbricks/lib/cn";
|
|
|
|
interface ContentWrapperProps {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export default function ContentWrapper({ children, className }: ContentWrapperProps) {
|
|
return <div className={cn("mx-auto max-w-7xl p-6", className)}>{children}</div>;
|
|
}
|