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 }}>
                <Nav />
            </div>
        )
    }

}


export default menu;