Add Plugin Panel

This commit is contained in:
Charles Bochet
2022-12-05 22:59:56 +01:00
parent 374573871c
commit b4032d508d
24 changed files with 252 additions and 53 deletions

View File

@ -0,0 +1,12 @@
import styled from '@emotion/styled';
const StyledPanel = styled.div`
display: flex;
flex-grow: 1;
`;
function DiscussionPanel() {
return <StyledPanel></StyledPanel>;
}
export default DiscussionPanel;