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+
15import { Button } from "@/app/conf/_design-system/button"
26import { 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"
48
5- import { useRef } from "react"
6- import { useInView } from "motion/react"
79import { HowItWorksListItem } from "./how-it-works-list-item"
8- import dynamic from "next/dynamic"
910import { PlayButton } from "./play-button"
1011
1112const InteractiveEditor = dynamic ( import ( "./interactive-editor" ) , {
Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ import { graphql, GraphQLSchema } from "graphql"
33
44import { QueryEditor } from "@/components/interactive-code-block/query-editor"
55import { 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"
69
710import { 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"
1111import { PlayButton } from "./play-button"
12- import { run } from "node:test"
1312
1413const INITIAL_QUERY_TEXT = `{
1514 project(name: "GraphQL") {
You can’t perform that action at this time.
0 commit comments