1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/vad/pages/index.jsx

11 lines
192 B
React
Raw Normal View History

import React from "react";
import dynamic from "next/dynamic";
const VAD = dynamic(() => import("../components/vad"), { ssr: false });
export default () => (
<div>
<VAD />
</div>
);