И
Size: a a a
И
Д
Т
И
TP
TP
/dashboard/profile
или /dashboard/settings
R
Т
TP
const routes = [
{
component: Root,
routes: [
{
path: "/",
exact: true,
component: Home
},
{
path: "/child/:id",
component: Child,
routes: [
{
path: "/child/:id/grand-child",
component: GrandChild
}
]
}
]
}
];
Т
const routes = [
{
component: Root,
routes: [
{
path: "/",
exact: true,
component: Home
},
{
path: "/child/:id",
component: Child,
routes: [
{
path: "/child/:id/grand-child",
component: GrandChild
}
]
}
]
}
];
TP
const routes = [
{
component: Root,
routes: [
{
path: "/child",
component: Child,
routes: [
{
path: "/child/grandChild”,
component: GrandChild
}
]
}
];
Т
const routes = [
{
component: Root,
routes: [
{
path: "/child",
component: Child,
routes: [
{
path: "/child/grandChild”,
component: GrandChild
}
]
}
];
TP
2
TP
2
TP
d
ER