style: prefer named exports

This commit is contained in:
Jean-Philippe Sirois
2019-07-27 18:04:52 -04:00
parent 4d434573d2
commit baa05d1968
12 changed files with 22 additions and 38 deletions
+1 -3
View File
@@ -11,7 +11,7 @@ function MenuItem({ children, to }: PropsWithChildren<{ to: string }>) {
)
}
function Sidebar() {
export function Sidebar() {
return (
<SC.SidebarWrapper>
<SC.Logo src={logo} />
@@ -27,5 +27,3 @@ function Sidebar() {
</SC.SidebarWrapper>
)
}
export default Sidebar