compass/compass/components/auth/Page.tsx
2024-02-04 02:45:13 +00:00

15 lines
330 B
TypeScript

import React, { ReactNode } from 'react';
interface PageInterface {
children: ReactNode;
}
const Page: React.FC<PageInterface> = ({ children }) => {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
{children}
</div>
);
};
export default Page;