otterscan/src/StandardFrame.tsx

8 lines
225 B
TypeScript
Raw Normal View History

2022-08-07 02:32:08 +00:00
import React, { PropsWithChildren } from "react";
2021-07-01 18:21:40 +00:00
2022-08-07 02:32:08 +00:00
const StandardFrame: React.FC<PropsWithChildren> = ({ children }) => (
2022-08-08 05:02:30 +00:00
<div className="grow bg-gray-100 px-9 pt-3 pb-12">{children}</div>
2021-07-01 18:21:40 +00:00
);
export default StandardFrame;