File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/components/index-page/how-it-works Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change
1
+ import { useRef } from "react"
2
+ import { useInView } from "motion/react"
3
+ import dynamic from "next/dynamic"
4
+
1
5
import { Button } from "@/app/conf/_design-system/button"
2
6
import { SectionLabel } from "@/app/conf/_design-system/section-label"
3
- import { CodeA , CodeB , CodeC } from "../.. /code-blocks"
7
+ import { CodeA , CodeB , CodeC } from "@/components /code-blocks"
4
8
5
- import { useRef } from "react"
6
- import { useInView } from "motion/react"
7
9
import { HowItWorksListItem } from "./how-it-works-list-item"
8
- import dynamic from "next/dynamic"
9
10
import { PlayButton } from "./play-button"
10
11
11
12
const InteractiveEditor = dynamic ( import ( "./interactive-editor" ) , {
Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ import { graphql, GraphQLSchema } from "graphql"
3
3
4
4
import { QueryEditor } from "@/components/interactive-code-block/query-editor"
5
5
import { ResultViewer } from "@/components/interactive-code-block/result-viewer"
6
+ import { getVariableToType } from "@/components/interactive-code-block/get-variable-to-type"
7
+ import { VariableEditor } from "@/components/interactive-code-block/variable-editor"
8
+ import { CodeBlockLabel } from "@/components/pre/code-block-label"
6
9
7
10
import { HowItWorksListItem } from "./how-it-works-list-item"
8
- import { getVariableToType } from "../../interactive-code-block/get-variable-to-type"
9
- import { CodeBlockLabel } from "../../pre/code-block-label"
10
- import { VariableEditor } from "../../interactive-code-block/variable-editor"
11
11
import { PlayButton } from "./play-button"
12
- import { run } from "node:test"
13
12
14
13
const INITIAL_QUERY_TEXT = `{
15
14
project(name: "GraphQL") {
You can’t perform that action at this time.
0 commit comments