Skip to content

docs: update path links #591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chakra-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Uncomment the thrown error on `./app/root.tsx` to see how Chackra UI handles you

## Related Links

[Chakra UI](https://chakra-ui.com/guides/getting-started/remix-guide)
[Chakra UI](https://chakra-ui.com/docs/get-started/frameworks/remix)
4 changes: 2 additions & 2 deletions graphql-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ This example makes use of [Remix Resource Routes][link-resource-routes] to fetch

**The relevant files:**

- [app/routes/api/characters.tsx](./app/routes/api/characters.tsx) & [app/routes/api/character.tsx](./app/routes/api/character.tsx)
- [app/routes/api.characters.tsx](./app/routes/api.characters.tsx) & [app/routes/api.character.tsx](./app/routes/api.character.tsx)
- These are the [Remix Resource Routes][link-resource-routes] that expose data via a JSON API
- They fetch from the [GraphQL API][link-sample-api] using the [Fetch API][link-fetch]
- [app/routes/\_index.tsx](./app/routes/_index.tsx)
- This route fetches a list of characters
- It's able to re-use the loader used by our API directly 🎉
- [app/routes/character/\$id.tsx](./app/routes/character/$id.tsx)
- [app/routes/character.$id.tsx](./app/routes/character.$id.tsx)
- This route fetches a single character from the API we've exposed
- The loader makes use of a fetch and URL params
- [codegen.yml](./codegen.yml)
Expand Down