Evo.External.App/packages/ui/background.tsx
2023-11-08 12:02:00 +03:00

6 lines
206 B
TypeScript

import type { PropsWithChildren } from 'react';
export function Background({ children }: PropsWithChildren) {
return <div className="rounded-sm border border-slate-100 bg-white p-5 ">{children}</div>;
}