first commit

This commit is contained in:
Kyle Lawson
2021-08-19 11:20:36 -05:00
parent ecb8219476
commit a37cdfc29f
3 changed files with 74 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
const Toolbar = () => {
return (
<div>
<div style={{ width: 300, height: 300, backgroundColor: "#FFDDDD" }}>
<h3>Block</h3>
<button>top left</button>
<button>top right</button>
<button>bottom left</button>
<button>bottom right</button>
</div>
<div style={{ width: 200, height: 200, backgroundColor: "#DDFFDD" }}>
<h3>Toolbar</h3>
</div>
</div>
);
};
export default Toolbar;