import Head from "next/head"; import React, { Dispatch, SetStateAction } from "react"; import { GrammarlyEditorPlugin } from "@grammarly/editor-sdk-react"; import Editor from "../components/Editor"; import styles from "../styles/Home.module.css"; import { Theme } from "../utils/types"; const Home = ({ theme, setTheme, }: { theme?: Theme; setTheme?: Dispatch>; }) => { return (
3ditor Demo
); }; export default Home;