add buttons, buttonstoolbar

This commit is contained in:
msosic97
2022-03-14 10:21:18 +01:00
parent 4e5d0f7022
commit 4e74b56b2f
14 changed files with 16210 additions and 71 deletions

View File

@@ -0,0 +1,12 @@
import './Header.css'
const Header = (props) => {
return (
<header>
<h3 className="title">{props.header}</h3>
</header>
)
}
export default Header