summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-06-04 19:46:13 -0500
committerGravatar GitHub <noreply@github.com> 2021-06-04 19:46:13 -0500
commitfe7769b84d5b251c1dff5b146659b9802a22e1ca (patch)
tree6330caeb77332594cf3bb764f6e50c5b74bf3e19
parent9d3533993045a85c83330173c38149c7e1aac1b2 (diff)
downloadastro-fe7769b84d5b251c1dff5b146659b9802a22e1ca.tar.gz
astro-fe7769b84d5b251c1dff5b146659b9802a22e1ca.tar.zst
astro-fe7769b84d5b251c1dff5b146659b9802a22e1ca.zip
Update renderers.md
Diffstat (limited to '')
-rw-r--r--docs/renderers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/renderers.md b/docs/renderers.md
index 532d4b445..0df4acc8e 100644
--- a/docs/renderers.md
+++ b/docs/renderers.md
@@ -98,7 +98,7 @@ function check(Component, props, childHTML) {
### `renderToStaticMarkup`
-`renderToStaticMarkup` is a function that renders a Component to a static string of HTML. You don't need to worry about hydration
+`renderToStaticMarkup` is a function that renders a Component to a static string of HTML. There's usually a method exported by frameworks named something like `renderToString`.
```js
import { renderToString } from 'xxx';