Add an App component.
This commit is contained in:
parent
0d0a99c73b
commit
f777e4a856
7
src/App.module.css
Normal file
7
src/App.module.css
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.App {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
1
src/App.module.css.d.ts
vendored
Normal file
1
src/App.module.css.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
export const App: string;
|
13
src/App.tsx
Normal file
13
src/App.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import React from "react";
|
||||||
|
import Editor from "./Editor";
|
||||||
|
import styles from "./App.module.css";
|
||||||
|
|
||||||
|
function App({}) {
|
||||||
|
return (
|
||||||
|
<div className={styles.App}>
|
||||||
|
<Editor />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App;
|
@ -3,14 +3,13 @@ import ReactDOM from "react-dom";
|
|||||||
import init, {
|
import init, {
|
||||||
parse_org,
|
parse_org,
|
||||||
} from "../../organic/target/wasm32-unknown-unknown/js/wasm";
|
} from "../../organic/target/wasm32-unknown-unknown/js/wasm";
|
||||||
import Editor from "./Editor";
|
import App from "./App";
|
||||||
|
|
||||||
init().then(() => {
|
init().then(() => {
|
||||||
console.log(parse_org("foo"));
|
console.log(parse_org("foo"));
|
||||||
ReactDOM.render(
|
ReactDOM.render(
|
||||||
<>
|
<>
|
||||||
<h1>Hello, world!</h1>
|
<App />
|
||||||
<Editor />
|
|
||||||
</>,
|
</>,
|
||||||
document.getElementById("root"),
|
document.getElementById("root"),
|
||||||
);
|
);
|
||||||
|
@ -4,9 +4,11 @@ const path = require("path");
|
|||||||
const CSSModuleLoader = {
|
const CSSModuleLoader = {
|
||||||
loader: "css-loader",
|
loader: "css-loader",
|
||||||
options: {
|
options: {
|
||||||
modules: true,
|
|
||||||
importLoaders: 2,
|
importLoaders: 2,
|
||||||
sourceMap: true,
|
sourceMap: true,
|
||||||
|
modules: {
|
||||||
|
localIdentName: '[name]_[local]_[hash:base64:5]',
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user