mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
11 lines
245 B
JavaScript
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;
|