+
東京ドームから地元の建物への変換アプリ
+
+
+
+
+
入力値: {inputValue} {unit}
+
表示値: {displayValue.toFixed(2)} {localUnit}個分
+
+ );
+}
+
+export default App;
\ No newline at end of file
diff --git a/docs/favicon.ico b/docs/favicon.ico
new file mode 100644
index 0000000..a11777c
Binary files /dev/null and b/docs/favicon.ico differ
diff --git a/docs/index.css b/docs/index.css
new file mode 100644
index 0000000..ec2585e
--- /dev/null
+++ b/docs/index.css
@@ -0,0 +1,13 @@
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+ monospace;
+}
diff --git a/docs/index.tsx b/docs/index.tsx
new file mode 100644
index 0000000..032464f
--- /dev/null
+++ b/docs/index.tsx
@@ -0,0 +1,19 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import './index.css';
+import App from './App';
+import reportWebVitals from './reportWebVitals';
+
+const root = ReactDOM.createRoot(
+ document.getElementById('root') as HTMLElement
+);
+root.render(
+