From 8b29fb8c33bd70105ba670443a1a61ca0e23071f Mon Sep 17 00:00:00 2001 From: Rookieaster <68706543+RookieMasterrr@users.noreply.github.com> Date: Sun, 9 Aug 2026 22:40:42 +0800 Subject: [PATCH] fix: Change import statement to use type keyword --- docs/start/framework/react/tutorial/reading-writing-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/framework/react/tutorial/reading-writing-file.md b/docs/start/framework/react/tutorial/reading-writing-file.md index 11b1be07944..47767466baf 100644 --- a/docs/start/framework/react/tutorial/reading-writing-file.md +++ b/docs/start/framework/react/tutorial/reading-writing-file.md @@ -178,7 +178,7 @@ Now let's create a new component `JokesList` to render the jokes on the page wit ```tsx // src/components/JokesList.tsx -import { Joke } from '../types' +import type { Joke } from '../types' interface JokesListProps { jokes: Joke[]