oh lord. prettier eslint and all that
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
import { type HtmlProps } from "@/types";
|
||||
import { cn } from "@/utils/cn";
|
||||
import type { HtmlProps } from '@/types';
|
||||
import { cn } from '@/utils/cn';
|
||||
|
||||
export function Container({className,...props}: HtmlProps<HTMLDivElement>) {
|
||||
export function Container({ className, ...props }: HtmlProps<HTMLDivElement>) {
|
||||
return (
|
||||
<div className={cn("mx-auto w-full max-w-4xl px-4", className)} {...props} />
|
||||
<div
|
||||
className={cn('mx-auto w-full max-w-4xl px-4', className)}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user