10 lines
255 B
TypeScript
10 lines
255 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 md:w-auto">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|