From a10cc41963987f95288090f15453b7c843dc4742 Mon Sep 17 00:00:00 2001 From: Yasutake Yohei Date: Sat, 30 Dec 2023 22:43:27 +0900 Subject: buildをgitignoreから削除 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/gian-tou/create-a-page/index.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 build/gian-tou/create-a-page/index.html (limited to 'build/gian-tou/create-a-page') diff --git a/build/gian-tou/create-a-page/index.html b/build/gian-tou/create-a-page/index.html new file mode 100644 index 00000000..5d248e6e --- /dev/null +++ b/build/gian-tou/create-a-page/index.html @@ -0,0 +1,27 @@ + + + + + +Create a Page | 小平市議・安竹洋平のまとめ + + + + +
メインコンテンツまでスキップ

Create a Page

+

Add Markdown or React files to src/pages to create a standalone page:

+
    +
  • src/pages/index.jslocalhost:3000/
  • +
  • src/pages/foo.mdlocalhost:3000/foo
  • +
  • src/pages/foo/bar.jslocalhost:3000/foo/bar
  • +
+

Create your first React Page

+

Create a file at src/pages/my-react-page.js:

+
src/pages/my-react-page.js
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>
);
}
+

A new page is now available at http://localhost:3000/my-react-page.

+

Create your first Markdown Page

+

Create a file at src/pages/my-markdown-page.md:

+
src/pages/my-markdown-page.md
# My Markdown page

This is a Markdown page
+

A new page is now available at http://localhost:3000/my-markdown-page.

+ + \ No newline at end of file -- cgit v1.2.3-54-g00ecf