repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
pass
/
components
/
Layout
/
Section
/
Content.tsx
blob
a7d68aeb0866fe1d5aab52ecb1806ae3ef201a69
1
import type { FC, PropsWithChildren } from 'react';
2
3
import './Content.scss';
4
5
export const Content: FC<PropsWithChildren> = ({ children }) => (
6
<div id="content" className="z-up">
7
{children}
8
</div>
9
);