import Head from 'next/head' import TextInput from "../components/TextInput"; import Continuation from '../components/Continuation'; import {useRef, useState} from "react"; export default function Home() { const [text, setText] = useState(""); // @ts-ignore return (
Alas, me got ye now
) }