Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { A } from '@solidjs/router'
import { For } from 'solid-js'

type Entry = { id: string; name: string }
Expand All @@ -18,7 +17,7 @@ export default function ClientSideRenderedTable() {
<td>{entry.id}</td>
<td>{entry.name}</td>
<td>
<A href={`/client-side-rendered/${entry.id}`}>View →</A>
<a href={`/client-side-rendered/${entry.id}`}>View →</a>
</td>
</tr>
)}
Expand Down
4 changes: 2 additions & 2 deletions packages/app-solid-start/src/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { For } from 'solid-js'
import { A, query, createAsync } from '@solidjs/router'
import { query, createAsync } from '@solidjs/router'
import { testData } from '../../../testdata/src/ssr'

const getData = query(async () => {
Expand All @@ -23,7 +23,7 @@ export default function Home() {
<td>{entry.id}</td>
<td>{entry.name}</td>
<td>
<A href={`/server-side-rendered/${entry.id}`}>View →</A>
<a href={`/server-side-rendered/${entry.id}`}>View →</a>
</td>
</tr>
)}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { For } from 'solid-js'
import { A, query, createAsync } from '@solidjs/router'
import { query, createAsync } from '@solidjs/router'
import { testData } from '../../../../testdata/src/ssr'

const getData = query(async () => {
Expand All @@ -23,7 +23,7 @@ export default function ServerSideRenderedPage() {
<td>{entry.id}</td>
<td>{entry.name}</td>
<td>
<A href={`/server-side-rendered/${entry.id}`}>View →</A>
<a href={`/server-side-rendered/${entry.id}`}>View →</a>
</td>
</tr>
)}
Expand Down
2 changes: 2 additions & 0 deletions packages/docs/src/content/docs/methodology.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ throughput, and load behavior for comparable production apps.
- The Astro islands use React because it was Astro's most popular UI framework
integration at the time this methodology was written, representing 23% of
projects according to the Astro team (15/07/2026).
- Solid does not use its native `A` navigation element as it is being deprecated and only kept in currently as a convenience. Their docs have been updated to reflect this [GitHub PR](Detail links use each framework's default production ). Note update to docs page once this PR has been merged.

### Server Side Rendered Tests

Expand All @@ -231,6 +232,7 @@ throughput, and load behavior for comparable production apps.
`/server-side-rendered` route and its detail route use
`export const prerender = false` so they are rendered on demand by the
production server instead of measured as prerendered static HTML.
- Solid does not use its native `A` navigation element as it is being deprecated and only kept in currently as a convenience. Their docs have been updated to reflect this [GitHub PR](Detail links use each framework's default production ). Note update to docs page once this PR has been merged.

### Server Side Throughput Tests

Expand Down
Loading