diff options
| author | Yasutake Yohei <yohei@yasutakeyohei.com> | 2023-12-30 22:24:55 +0900 |
|---|---|---|
| committer | Yasutake Yohei <yohei@yasutakeyohei.com> | 2023-12-30 22:24:55 +0900 |
| commit | 3fc0ee1b72c12922254533b78695ffa17e7232be (patch) | |
| tree | f92d871e6720670f3fa98d9e28b9396a894d9135 /src/pages/my-react-page.js | |
| parent | e18d8441d03746158a72029381d8fbdee39184b3 (diff) | |
initial commit
Diffstat (limited to 'src/pages/my-react-page.js')
| -rw-r--r-- | src/pages/my-react-page.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pages/my-react-page.js b/src/pages/my-react-page.js new file mode 100644 index 00000000..2f6c2a34 --- /dev/null +++ b/src/pages/my-react-page.js @@ -0,0 +1,11 @@ +import React from 'react'; +import Layout from '@theme/Layout'; + +export default function MyReactPage() { + return ( + <Layout> + <h1>My React page</h1> + <p>This is a React page</p> + </Layout> + ); +}
\ No newline at end of file |
