Skip to content

Commit

Permalink
fix: BaseLayout
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Sep 17, 2024
1 parent d459eb4 commit 354a1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/BaseLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface LayoutProps {
navigation?: React.ReactNode
}

export const Layout = ({ children, navigation }: LayoutProps) => {
export const BaseLayout = ({ children, navigation }: LayoutProps) => {
const [mobileNavigationActive, setMobileNavigationActive] = useState(false)

const logo = {
Expand Down

0 comments on commit 354a1dc

Please sign in to comment.