[x] Header is a Flex component that stacks things horizontally and spaces them far apart, the 2 children a heading title and a quietToggleButton that has just an icon for now
<something>
<h1> SignatureGenerator </h1>
< Custom Toggle Button that does nothing ... yet />
</something>
- [x] Layout implements the Header component and _aligns_ them _**vertically**_
```javascript
<Layout>
<Header />
{children}
</Layout>
Once completed, this component should be added to App.tsx, it should be inside SignatureProvider but it should wrap all the existing child components. Check this example on how to render child components inside another component
Once completed, this component should be added to
App.tsx
, it should be inside SignatureProvider but it should wrap all the existing child components. Check this example on how to render child components inside another component