umami/components/layout/Page.js

7 lines
171 B
JavaScript
Raw Normal View History

2020-08-06 04:04:02 +02:00
import React from 'react';
import styles from './Page.module.css';
export default function Page({ children }) {
2020-08-18 07:47:58 +02:00
return <div className={styles.page}>{children}</div>;
2020-08-06 04:04:02 +02:00
}