1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/wmr/public/pages/about/index.js
2021-04-20 19:11:14 +09:00

11 lines
245 B
JavaScript

import styles from "./style.module.css";
const About = ({ query }) => (
<section class={styles.about}>
<h1>About</h1>
<p>A page all about this website.</p>
<pre>{JSON.stringify(query)}</pre>
</section>
);
export default About;