mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-20 18:40:17 -04:00
16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
import React, { ReactNode } from "react";
|
|
|
|
interface PageInterface {
|
|
children: ReactNode;
|
|
}
|
|
|
|
const Paper: React.FC<PageInterface> = ({ children }) => {
|
|
return (
|
|
<div className="w-full min-h-screen px-4 py-16 bg-gray-50 sm:px-6 lg:px-8">
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Paper;
|