save, create and view reports in dashboard
This commit is contained in:
8
apps/web/src/components/Container.tsx
Normal file
8
apps/web/src/components/Container.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { type HtmlProps } from "@/types";
|
||||
import { cn } from "@/utils/cn";
|
||||
|
||||
export function Container({className,...props}: HtmlProps<HTMLDivElement>) {
|
||||
return (
|
||||
<div className={cn("mx-auto w-full max-w-4xl", className)} {...props} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user