8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import React, { PropsWithChildren } from "react";
|
|
|
|
const StandardFrame: React.FC<PropsWithChildren> = ({ children }) => (
|
|
<div className="grow bg-gray-100 px-9 pt-3 pb-12">{children}</div>
|
|
);
|
|
|
|
export default StandardFrame;
|