10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
|
|
export function Background({ children }: PropsWithChildren) {
|
|
return (
|
|
<div className="grid w-full gap-2 rounded-sm border border-slate-100 bg-white p-5 lg:w-[1104px] ">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|