AutorÃa | Ultima modificación | Ver Log |
import React from 'react'
import styled from 'styled-components'
const StyledSidebar = styled.aside`
position: relative;
display: flex;
flex-direction: column;
gap: 0.5rem;
height: fit-content;
grid-area: sidebar;
@media (max-width: 767px) {
display: none;
}
`
const Sidebar = ({ children }) => {
return <StyledSidebar>{children}</StyledSidebar>
}
export default Sidebar