Skip to content

Commit cbef15a

Browse files
committed
docs: update docs to mention suspense ssr
1 parent 9bb1237 commit cbef15a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docusaurus/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id: intro
33
title: Introduction
44
sidebar_label: Introduction
5-
description: 'react-isomorphic-data is a library to handle JSON-formatted data in your react app, with full SSR support. It has similar APIs to react-apollo'
5+
description: 'react-isomorphic-data is a library to handle JSON-formatted data in your react app, with Suspense SSR support. It has similar APIs to react-apollo'
66
---
77

88
`react-isomorphic-data` is heavily inspired by `react-apollo`. The main purpose of it is to allow developers to write React components that can declare its own data requirement in the component itself, with SSR support as well!

docusaurus/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
module.exports = {
99
title: 'React Isomorphic Data Documentation',
10-
tagline: 'Easily fetch data in your ⚛️ React app, with full SSR support! 🎉',
10+
tagline: 'Easily fetch data in your ⚛️ React app, with Suspense SSR support! 🎉',
1111
url: 'https://react-isomorphic-data.netlify.com/', // Your website URL
1212
baseUrl: '/',
1313
favicon: 'img/favicon.ico',

docusaurus/src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const features = [
2626
),
2727
},
2828
{
29-
title: <>Full SSR Support</>,
29+
title: <>SSR Support with Suspense</>,
3030
imageUrl: 'img/undraw_code_review.svg',
3131
description: (
3232
<>Everything works on SSR with little changes in your server code.</>
@@ -55,7 +55,7 @@ function Home() {
5555
return (
5656
<Layout
5757
title={`${siteConfig.title}`}
58-
description="Easily fetch data in your ⚛️ React app, with full SSR support! 🎉"
58+
description="Easily fetch data in your ⚛️ React app, with Suspense SSR support! 🎉"
5959
>
6060
<Head>
6161
<meta

0 commit comments

Comments
 (0)