nextjs Data List

/ 목차 /
- NEXT.JS에서 지원하는 Components
- 이미지처리
- 링크처리
- 스크립트처리
NEXT.JS에서 지원하는 Components
- NEXT.JS 지원하는 이미지처리 링크처리 스크립트 처리 컴퍼넌트입니다.이미지처리
code import Image from 'next/image' export default function Page() { return ( <Image src="/profile.png" width={500} height={500} alt="Picture of the author"> ) }
링크처리
code import Link from 'next/link' export default function Page() { return ( <Link href="/dashboard"> Dashboard </Link> ) }
스크립트처리
code import Script from 'next/script' export default function Dashboard() { return ( <Script src="https://example.com/script.js"> ) }
Comment