Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / pass / components / Layout / Section / Content.tsx
bloba7d68aeb0866fe1d5aab52ecb1806ae3ef201a69
1 import type { FC, PropsWithChildren } from 'react';
3 import './Content.scss';
5 export const Content: FC<PropsWithChildren> = ({ children }) => (
6     <div id="content" className="z-up">
7         {children}
8     </div>
9 );