import React from "react"; import { NextPage } from "next"; import Head from "next/head"; import { Mainframe } from "../../ui/Mainframe"; import LangProvider from "../../languages/bf"; const LANG_ID = "bf"; const LANG_NAME = "Turing"; const IDE: NextPage = () => { return ( <> {LANG_NAME} ); }; export default IDE;