import React from 'react'; import { Nav } from './common'; class menu extends React.Component { render(match) { return ( <div className='tabbar' style={{ position: "fixed", width: "100%", bottom: 0,zIndex: '999' }}> <Nav /> </div> ) } } export default menu;