Skip to content

Commit 1e72129

Browse files
chore: format
1 parent ee33582 commit 1e72129

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

graphql-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This example makes use of [Remix Resource Routes][link-resource-routes] to fetch
2525
- [app/routes/api/characters.tsx](./app/routes/api/characters.tsx) & [app/routes/api/character.tsx](./app/routes/api/character.tsx)
2626
- These are the [Remix Resource Routes][link-resource-routes] that expose data via a JSON API
2727
- They fetch from the [GraphQL API][link-sample-api] using the [Fetch API][link-fetch]
28-
- [app/routes/_index.tsx](./app/routes/_index.tsx)
28+
- [app/routes/\_index.tsx](./app/routes/_index.tsx)
2929
- This route fetches a list of characters
3030
- It's able to re-use the loader used by our API directly 🎉
3131
- [app/routes/character/\$id.tsx](./app/routes/character/$id.tsx)

ioredis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Open this example on [CodeSandbox](https://codesandbox.com):
1818
## Relevant files:
1919

2020
- [app/utils/redis.server.ts](./app/utils/redis.server.ts) where ioredis is setup.
21-
- [app/routes/_index.tsx](./app/routes/_index.tsx) where ioredis is used.
21+
- [app/routes/\_index.tsx](./app/routes/_index.tsx) where ioredis is used.
2222

2323
## Related Links
2424

pathless-routes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ app
3434

3535
| URL | Matched Route |
3636
| --------------- | --------------------------------------- |
37-
| / | app/routes/_index.tsx |
37+
| / | app/routes/\_index.tsx |
3838
| /articles | app/routes/articles.tsx |
3939
| /articles/hello | app/routes/articles/\_\_layout/hello.md |
4040

quirrel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Relevant files:
1616

1717
- [app/queues/greetings.server.ts](app/queues/greetings.server.ts)
1818
- [app/routes/queues/greetings.ts](app/routes/queues/greetings.ts)
19-
- [app/routes/_index.tsx](app/routes/_index.tsx)
19+
- [app/routes/\_index.tsx](app/routes/_index.tsx)
2020

2121
Describe the example and how it demonstrates solving the problem. Reference any relevant files/dependencies if needed.
2222

react-spring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ And when JavaScript is disabled, `unset` the animation styles so that the page i
1717
Relevant files:
1818

1919
- [app/root.tsx](./app/root.tsx)
20-
- [app/routes/_index.tsx](./app/routes/_index.tsx)
20+
- [app/routes/\_index.tsx](./app/routes/_index.tsx)
2121

2222
## Related Links
2323

redis-upstash-session/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Sorry no preview as you'll need an account on Upstash for it
2929

3030
For more info check the following files:
3131

32-
- [app/routes/_index.tsx](app/routes/_index.tsx)
32+
- [app/routes/\_index.tsx](app/routes/_index.tsx)
3333
- [app/sessions.server.ts](app/sessions.server.ts)
3434
- [app/sessions/upstash.server.ts](app/sessions/upstash.server.ts)
3535

session-flash/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Open this example on [CodeSandbox](https://codesandbox.com):
1010

1111
## Example
1212

13-
This example shows how to create a simple alert message. Check [app/routes/_index.tsx](app/routes/_index.tsx) to see the flash message in action:
13+
This example shows how to create a simple alert message. Check [app/routes/\_index.tsx](app/routes/_index.tsx) to see the flash message in action:
1414

1515
Implementation logic:
1616

sharing-loader-data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Open this example on [CodeSandbox](https://codesandbox.com):
1313
This is a simple "workshop" app which has a "user" and a list of workshops. The user is loaded in the root loader and needed in the index route. The workshops are loaded in the workshops loader and then used in the individual workshop routes.
1414

1515
- [app/root.tsx](./app/root.tsx) - This loads the user
16-
- [app/routes/_index.tsx](./app/routes/_index.tsx) - This accesses the root loader data to display the user's name
16+
- [app/routes/\_index.tsx](./app/routes/_index.tsx) - This accesses the root loader data to display the user's name
1717
- [app/routes/workshops.tsx](./app/routes/workshops.tsx) - This loads the workshops to display them in a list of links
1818
- [app/routes/workshops/$workshopId.tsx](./app/routes/workshops/$workshopId.tsx) - This accesses the workshops loader data to display the workshop details
1919

twind/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Relevant files:
1616

1717
- [app/entry.server.tsx](./app/entry.server.tsx) where the twind styles have been added to the markup to enable server-side-rendering (SSR) of styles.
1818
- [app/root.tsx](./app/root.tsx) where twind has been set up.
19-
- [app/routes/_index.tsx](./app/routes/_index.tsx) and [app/routes/anything.tsx](./app/routes/anything.tsx) where some basic styling has been demonstrated.
19+
- [app/routes/\_index.tsx](./app/routes/_index.tsx) and [app/routes/anything.tsx](./app/routes/anything.tsx) where some basic styling has been demonstrated.
2020
- [remix.config.js](./remix.config.js) where the twind modules have been added to [`serverDependenciesToBundle`](https://remix.run/file-conventions/remix-config#serverdependenciestobundle).
2121
- [twind.config.ts](./twind.config.ts) (optional) where twind can be [configured](https://twind.dev/handbook/configuration.html).
2222

0 commit comments

Comments
 (0)