mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-15 08:03:00 +00:00
VerticalNavBar moved to NavBar package
This commit is contained in:
parent
09d52ceecb
commit
cc6116e5a5
6 changed files with 7 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
const React = require('react');
|
const React = require('react');
|
||||||
const PropTypes = require('prop-types');
|
const PropTypes = require('prop-types');
|
||||||
const VerticalNavBar = require('stremio/common/VerticalNavBar');
|
const { VerticalNavBar } = require('stremio/common/NavBar');
|
||||||
|
|
||||||
const TABS = [
|
const TABS = [
|
||||||
{ route: 'board', label: 'Board', icon: 'ic_board', href: '#/' },
|
{ route: 'board', label: 'Board', icon: 'ic_board', href: '#/' },
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
const NavBar = require('./NavBar');
|
const VerticalNavBar = require('./VerticalNavBar');
|
||||||
|
|
||||||
module.exports = NavBar;
|
module.exports = {
|
||||||
|
VerticalNavBar
|
||||||
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ const MetaPreview = require('./MetaPreview');
|
||||||
const MetaRow = require('./MetaRow');
|
const MetaRow = require('./MetaRow');
|
||||||
const ModalDialog = require('./ModalDialog');
|
const ModalDialog = require('./ModalDialog');
|
||||||
const Multiselect = require('./Multiselect');
|
const Multiselect = require('./Multiselect');
|
||||||
const NavBar = require('./NavBar');
|
const { VerticalNavBar } = require('./NavBar');
|
||||||
const PaginationInput = require('./PaginationInput');
|
const PaginationInput = require('./PaginationInput');
|
||||||
const PlayIconCircleCentered = require('./PlayIconCircleCentered');
|
const PlayIconCircleCentered = require('./PlayIconCircleCentered');
|
||||||
const Popup = require('./Popup');
|
const Popup = require('./Popup');
|
||||||
|
|
@ -43,7 +43,7 @@ module.exports = {
|
||||||
MetaRow,
|
MetaRow,
|
||||||
ModalDialog,
|
ModalDialog,
|
||||||
Multiselect,
|
Multiselect,
|
||||||
NavBar,
|
VerticalNavBar,
|
||||||
PaginationInput,
|
PaginationInput,
|
||||||
PlayIconCircleCentered,
|
PlayIconCircleCentered,
|
||||||
Popup,
|
Popup,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue