Remove Rockstar-related files

Rockstar got slightly tricky to implement, so for the sake of completing
the project, Rockstar is being kept for later in a separate branch.
This commit is contained in:
Nilay Majorwar
2022-02-13 19:34:11 +05:30
parent a7b7879fb3
commit 10221b0767
16 changed files with 1 additions and 7611 deletions

View File

@ -1,24 +0,0 @@
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/rockstar";
const LANG_ID = "rockstar";
const LANG_NAME = "Rockstar";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<Mainframe
langId={LANG_ID}
langName={LANG_NAME}
provider={LangProvider}
/>
</>
);
};
export default IDE;