FeeRouters.js 173 Bytes
Newer Older
tdgiang committed
1 2 3 4 5 6 7 8 9 10
import React from 'react'

const FeeRouters = [
    {
        path: '/list-fee',
        component: React.lazy(() => import('./Index')),
    },
]

export default FeeRouters