fix: Circular dependencies

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
Florian Bouillon 2022-05-13 12:03:58 +02:00
parent 98cfcf2b95
commit 71ec45c806
Signed by: Florian Bouillon
GPG Key ID: BEEAF3722D0EBF64
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import React from 'react' import React from 'react'
import { Link } from '..' import Link from '../Link'
import Box from '../Box' import Box from '../Box'
import { Icon } from '../interfaces' import { Icon } from '../interfaces'
import { buildClassName } from '../Util' import { buildClassName } from '../Util'

View File

@ -13,7 +13,7 @@ import { buildClassName } from '../Util'
import css from './Navbar.module.styl' import css from './Navbar.module.styl'
import { Icon } from '../interfaces' import { Icon } from '../interfaces'
import { Button } from '..' import Button from '../Button'
import { objectEqual } from '@dzeio/object-util' import { objectEqual } from '@dzeio/object-util'
interface MenuItem { interface MenuItem {

View File

@ -11,7 +11,7 @@ import { buildClassName } from '../Util'
import css from './Sidebar.module.styl' import css from './Sidebar.module.styl'
import { Icon } from '../interfaces' import { Icon } from '../interfaces'
import { Menu } from '..' import Menu from '../Menu'
interface MenuItem { interface MenuItem {
path?: string path?: string