menu_20190417103932.js 317 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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;