mirror of
https://github.com/FAUSheppy/is-it-the-junglers-fault
synced 2025-12-12 16:38:33 +01:00
initial
This commit is contained in:
21
src/App.js
Normal file
21
src/App.js
Normal 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;
|
||||
Reference in New Issue
Block a user