I am using React Material UI and I am trying to add a sticky footer to the drawer component.
Here is the sandbox with the drawer added for reference - https://codesandbox.io/s/distracted-tree-nfqme?file=/src/App.js
The documentation shows no support either by other components or the Drawer API.
I have tried messing with Containers and using custom CSS styles to make position sticky at bottom but that just broke the html completely
export const Container = styled.div`
display: flex;
min-height: 100vh;
flex-direction: column;
`;