This commit is contained in:
Yannik Schmidt
2020-10-07 22:24:13 +02:00
commit 6453e895de
11 changed files with 14028 additions and 0 deletions

0
src/App.css Normal file
View File

21
src/App.js Normal file
View File

@@ -0,0 +1,21 @@
import React from 'react';
import './App.css';
function buttonsForState(state){
return (
<button>Test</button>
);
}
function Dialog(state) {
return (
<div className="container">
<header>
"text for state logo"
</header>
{buttonsForState(state)}
</div>
);
}
export default Dialog;

13
src/index.css Normal file
View File

@@ -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;
}

11
src/index.js Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);