UNPKG

next-live2d

Version:

A simple React component to embed Live2D models (via `live2d-widget`) in Next.js projects.

7 lines (6 loc) 236 B
import { jsx as _jsx } from "react/jsx-runtime"; // app/page.tsx import MyLive2DWidget from 'next-live2d'; export default function Page() { return (_jsx("main", { children: _jsx(MyLive2DWidget, { modelName: "koharu" }) })); }