Skip to content

Commit

Permalink
chore(docs): validate table HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Oct 15, 2022
1 parent 4be4421 commit e211dbf
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 25 deletions.
24 changes: 13 additions & 11 deletions docs/getting-started/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,19 @@ No. There is no additional overhead. Components participate in a unified renderl
### What does it look like?

<table>
<tr>
<td>
Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop.
(<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).
</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" />
</a>
</td>
</tr>
<tbody>
<tr>
<td>
Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop.
(<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).
</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" />
</a>
</td>
</tr>
</tbody>
</table>

```jsx
Expand Down
17 changes: 10 additions & 7 deletions packages/fiber/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,16 @@ There is no additional overhead. Components participate in the renderloop outsid
### What does it look like?

<table>
<tr>
<td>Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop. (<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" /></td>
</a>
</tr>
<tbody>
<tr>
<td>Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop. (<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" />
</a>
</td>
</tr>
</tbody>
</table>

#### Imports first
Expand Down
17 changes: 10 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,16 @@ Yes. It merely expresses Threejs in JSX: `<mesh />` becomes `new THREE.Mesh()`,
### What does it look like?

<table>
<tr>
<td>Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop. (<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" /></td>
</a>
</tr>
<tbody>
<tr>
<td>Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop. (<a href="https://codesandbox.io/s/rrppl0y8l4?file=/src/App.js">live demo</a>).</td>
<td>
<a href="https://codesandbox.io/s/rrppl0y8l4">
<img src="https://i.imgur.com/sS4ArrZ.gif" />
</a>
</td>
</tr>
</tbody>
</table>

```jsx
Expand Down

0 comments on commit e211dbf

Please sign in to comment.