Change route param

This commit is contained in:
Grigorii Desyatnikov 2022-01-27 12:36:28 +03:00
parent 0c74192cd1
commit a31bbdacd9
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: any) => string
}
export default Route