import React from "react"; import { renderToStaticMarkup } from "react-dom/server"; import { App } from "./src/app"; const fs = require("fs"); const html = ` Big Todo App ${renderToStaticMarkup()} `; fs.writeFileSync("dist/index.html", html);