Skip to content

Commit 008996c

Browse files
committed
docs: Initial v.13 blog written
1 parent 68f14fc commit 008996c

File tree

6 files changed

+673
-16
lines changed

6 files changed

+673
-16
lines changed

docs/core/shared/_installation.mdx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Alternatively [integrate state with redux](../guides/redux.md)
5252

5353
<TabItem value="nextjs">
5454

55-
<p style={{textAlign: 'center'}}>
56-
<Link className="button button--primary" to="../guides/ssr#nextjs">Full NextJS Guide</Link>
55+
<p style={{ textAlign: 'center' }}>
56+
<Link className="button button--primary" to="../guides/ssr#nextjs">Full NextJS Guide</Link>
5757
</p>
5858

5959
```tsx title="app/layout.tsx"
@@ -65,10 +65,7 @@ export default function RootLayout({ children }) {
6565
<html>
6666
<body>
6767
// highlight-next-line
68-
<DataProvider>
69-
{children}
70-
// highlight-next-line
71-
</DataProvider>
68+
<DataProvider>{children}</DataProvider>
7269
</body>
7370
</html>
7471
);
@@ -86,7 +83,7 @@ export default function RootLayout() {
8683
return (
8784
// highlight-start
8885
<DataProvider>
89-
// highlight-end
86+
// highlight-end
9087
<Stack>
9188
<Stack.Screen name="index" />
9289
</Stack>

examples/github-app/src/resources/Base.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
import { GQLEndpoint } from '@data-client/graphql';
2-
import {
3-
Entity,
4-
Schema,
5-
ShortenPath,
6-
schema,
7-
Denormalize,
8-
} from '@data-client/rest';
2+
import { Entity, Schema, ShortenPath, schema } from '@data-client/rest';
93
import {
104
GetEndpoint,
115
RestGenerics,
@@ -14,7 +8,6 @@ import {
148
resource,
159
ResourceGenerics,
1610
ResourceOptions,
17-
PaginationFieldEndpoint,
1811
} from '@data-client/rest';
1912
import { camelCase, snakeCase } from 'lodash';
2013

0 commit comments

Comments
 (0)