Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansolid committed Jul 2, 2021
1 parent 743b762 commit 47ad259
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions documentation/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const [last, setLast] = createSignal("Bourne");
createEffect(() => console.log(`${first()} ${last()}`))
```

You can learn more in the Reactivity and Rendering sections.
You can learn more about [Solid's Reactivity](https://www.solidjs.com/docs/latest#reactivity) and [Solid's Rendering](https://www.solidjs.com/docs/latest#rendering).

## Think Solid

Expand Down Expand Up @@ -81,7 +81,7 @@ Solid has a dynamic server side rendering solution that enables a truly isomorph

Since Solid supports asynchronous and streaming rendering on the server, you get to write your code one way and have it execute on the server. This means that features like [render-as-you-fetch](https://reactjs.org/docs/concurrent-mode-suspense.html#approach-3-render-as-you-fetch-using-suspense) and code splitting just work in Solid.

For more information, read the Server guide.
For more information, read the [Server guide](https://www.solidjs.com/docs/latest#server-side-rendering).

## No Compilation?

Expand Down
4 changes: 2 additions & 2 deletions documentation/guides/reactivity.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Finally, Memos are cached derived values. They share the properties of both Sign
const fullName = createMemo(() => `${firstName()} ${lastName()}`);
```

# How it Works
## How it Works

Signals are event emitters that hold a list of subscriptions. They notify their subscribers whenever their value changes.

Expand Down Expand Up @@ -81,7 +81,7 @@ For more detailed understanding of how Reactivity works these are useful article

[SolidJS: Reactivity to Rendering](https://indepth.dev/posts/1289/solidjs-reactivity-to-rendering)

# Considerations
## Considerations

This approach to reactivity is very powerful and dynamic. It can handle dependencies changing on the fly through executing different branches of conditional code. It also works through many levels of indirection. Any function executed inside a tracking scope is also being tracked.

Expand Down
2 changes: 1 addition & 1 deletion documentation/resources/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- [Simple Todos](https://codesandbox.io/s/lrm786ojqz) Todos with LocalStorage persistence
- [Simple Routing](https://codesandbox.io/s/jjp8m8nlz5) Use 'switch' control flow for simple routing
- [Scoreboard](https://codesandbox.io/s/solid-scoreboard-sjpje) Make use of hooks to do some simple transitions
- [Tic Tac Toe](https://playground.solidjs.com/?hash=1541036269) Simple Example of the classic game
- [Tic Tac Toe](https://playground.solidjs.com/?hash=1586517762&version=1.0.0) Simple Example of the classic game
- [Form Validation](https://codesandbox.io/s/solid-form-validation-2cdti) HTML 5 validators with custom async validation
- [CSS Animations](https://codesandbox.io/s/basic-css-transition-36rln?file=/index.js) Using Solid Transition Group
- [Styled Components](https://codesandbox.io/s/solid-styled-components-yv2t1) A simple example of creating Styled Components.
Expand Down

0 comments on commit 47ad259

Please sign in to comment.