Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
WiXSL committed Oct 28, 2022
1 parent f5b5640 commit 03df4ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: "Caching"

# Caching

Not hitting the server is the best way to improve a web app performance, and it's an ecological footprint too (network and datacenter usage account for about 40% of the CO2 emissions in IT). React-admin comes with a built-in cache-first approach called *optimistic rendering*, and it supports caching both at the HTTP level and the application level.
Not hitting the server is the best way to improve a web app performance, and its an ecological footprint too (network and datacenter usage account for about 40% of the CO2 emissions in IT). React-admin comes with a built-in cache-first approach called *optimistic rendering*, and it supports caching both at the HTTP level and the application level.

## Optimistic Rendering

Expand Down
2 changes: 1 addition & 1 deletion docs/EditGuesser.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: "The EditGuesser Component"

# `<EditGuesser>`

Use `<EditGuesser>` to quickly bootstrap an `Edit` view on top of an existing API, without adding the innputs one by one.
Use `<EditGuesser>` to quickly bootstrap an Edit view on top of an existing API, without adding the innputs one by one.

Just like [`<Edit>`](./Edit.md), `<EditGuesser>` fetches the data. It then analyzes the response, and guesses the inputs it should use to display a basic `<SimpleForm>` with the data. It also dumps the components it has guessed in the console, so you can copy it into your own code.

Expand Down
2 changes: 1 addition & 1 deletion docs/UrlField.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: "The UrlField Component"
# `<UrlField>`


`<UrlField>` displays an url in a MUI's `<Link href="" />` component.
`<UrlField>` displays a url in a MUI's `<Link href="" />` component.

```jsx
import { UrlField } from 'react-admin';
Expand Down

0 comments on commit 03df4ec

Please sign in to comment.