Merge pull request #16 from TouchInstinct/feature/change_route

Change route param
This commit is contained in:
grigoriishveps 2022-01-27 13:15:21 +03:00 committed by GitHub
commit b1d3aed8cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ interface Route {
icon?: React.ComponentType
childRoutes?: Route[]
component?: React.ComponentType
getUrl?: (params: Record<string, unknown>) => string
}
export default Route