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

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;