Skip to content

Commit 062a57c

Browse files
authored
Merge pull request #8681 from marmelab/appbar-improvements
Improve AppBar Customization
2 parents c69c86f + 222d205 commit 062a57c

40 files changed

+1017
-321
lines changed

docs/Admin.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const App = () => (
209209

210210
## `dashboard`
211211

212-
By default, the homepage of an admin app is the `list` of the first child `<Resource>`. But you can also specify a custom component instead. To fit in the general design, use MUI's `<Card>` component, and react-admin's `<Title>` component to set the title in the AppBar:
212+
By default, the homepage of an admin app is the `list` of the first child `<Resource>`. But you can also specify a custom component instead. To fit in the general design, use MUI's `<Card>` component, and [react-admin's `<Title>` component](./Title.md) to set the title in the AppBar:
213213

214214
```jsx
215215
// in src/Dashboard.js
@@ -270,7 +270,7 @@ When users type URLs that don't match any of the children `<Resource>` component
270270

271271
![Not Found](./img/not-found.png)
272272

273-
You can customize this page to use the component of your choice by passing it as the `catchAll` prop. To fit in the general design, use MUI's `<Card>` component, and react-admin's `<Title>` component:
273+
You can customize this page to use the component of your choice by passing it as the `catchAll` prop. To fit in the general design, use MUI's `<Card>` component, and [react-admin's `<Title>` component](./Title.md):
274274

275275
```jsx
276276
// in src/NotFound.js

0 commit comments

Comments
 (0)