Evo.External.App/packages/ui/background.tsx
2023-11-09 22:49:29 +03:00

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>
);
}