10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
import { FunctionComponent } from "preact";
|
|
|
|
export const Content: FunctionComponent = ({ children }) => {
|
|
return (
|
|
<div class="bg-smoke-200 dark:bg-smoke-900 border-4 border-licorice-800 p-8 rounded-3xl">
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|