Skip to content

Commit f56e40e

Browse files
ci: apply automated fixes
1 parent a9ceb7d commit f56e40e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/start/framework/react/migrate-from-next-js.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ Next.js uses the `next/image` component for optimized images. In TanStack Start,
310310
and almost a drop-in replacement.
311311

312312
```tsx
313-
import Image from "next/image" // [!code --]
314-
import { Image } from "@unpic/react"; // [!code ++]
313+
import Image from 'next/image' // [!code --]
314+
import { Image } from '@unpic/react' // [!code ++]
315315
function Component() {
316316
return (
317317
<Image
@@ -326,7 +326,6 @@ function Component() {
326326
}
327327
```
328328

329-
330329
### Server ~Actions~ Functions
331330

332331
```tsx

0 commit comments

Comments
 (0)