Skip to content

Commit

Permalink
chore: bump cli
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Feb 9, 2023
1 parent 1c38c27 commit 4074ca2
Show file tree
Hide file tree
Showing 3 changed files with 851 additions and 762 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
},
"devDependencies": {
"@4c/babel-preset": "^9.1.0",
"@4c/cli": "^3.0.1",
"@4c/cli": "^4.0.4",
"@4c/file-butler": "^6.0.0",
"@4c/prettier-config": "^1.1.0",
"@4c/tsconfig": "^0.4.0",
Expand Down
5 changes: 3 additions & 2 deletions www/docs/configuration/route-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ A route object under the default matching algorithm and route element resolver c
- `Component` or `getComponent` - the component for the route, or a method that returns the component for the route

```ts
Component: React.ComponentType<any>;
getComponent: (match: RouteMatch) => React.ComponentType<any> | Promise<React.ComponentType<any>>;
Component: React.ComponentType<any>;
getComponent: (match: RouteMatch) =>
React.ComponentType<any> | Promise<React.ComponentType<any>>;
```

- `data` or `getData`: additional data for the route, or a method that returns additional data for the route
Expand Down

0 comments on commit 4074ca2

Please sign in to comment.