6 lines
206 B
TypeScript
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>;
|
|
}
|