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,27 @@
import styled from '@emotion/styled';
import PluginPanelNav from './PluginPanelNav';
import PluginHistory from './plugin-history/PanelHistory';
const StyledPanel = styled.div`
display: flex;
width: 350px;
border-left: 1px solid #eaecee;
`;
const StyledContainer = styled.div`
display: flex;
flex-grow: 1;
`;
function PluginPanel() {
return (
<StyledPanel>
<StyledContainer>
<PluginHistory />
</StyledContainer>
<PluginPanelNav />
</StyledPanel>
);
}
export default PluginPanel;