mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
12 lines
245 B
JavaScript
12 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;
|