Remove react-bootstrap/Navbar
This commit is contained in:
parent
86274ec42a
commit
4cbf377ec6
|
|
@ -1,12 +1,11 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Navbar from 'react-bootstrap/Navbar';
|
import {Container, Navbar} from 'reactstrap';
|
||||||
import {Container} from 'reactstrap';
|
|
||||||
|
|
||||||
import {LinkButton} from './LinkButton';
|
import {LinkButton} from './LinkButton';
|
||||||
|
|
||||||
export function TournamentStatusBar(props) {
|
export function TournamentStatusBar(props) {
|
||||||
return (<Navbar sticky='top' bg='light' className='border-bottom border-top'>
|
return (<Navbar color='light' light className='border-bottom border-top'>
|
||||||
<Container className='px-3'>
|
<Container>
|
||||||
{props.children}
|
{props.children}
|
||||||
</Container>
|
</Container>
|
||||||
</Navbar>);
|
</Navbar>);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue