Files
sanasto-app/components/Content.jsx
Max Lynch 8b2df11c87 Shell
2020-12-20 23:02:27 -06:00

11 lines
257 B
JavaScript

const Content = ({ className, children }) => (
<div
className={`${className} flex-1 overflow-auto"`}
style={{
paddingTop: `calc(env(safe-area-inset-top, 0px) + 16px)`, // Care for the notch
}}>
{children}
</div>
);
export default Content;