Repository URL to install this package:
|
Version:
0.0.0 ▾
|
export interface ShellProps {
children?: React.ReactNode
}
export function Shell({ children }: ShellProps): JSX.Element {
return <div>{children}</div>
}