Add Shakespeare esolang
This commit is contained in:
24
pages/ide/shakespeare.tsx
Normal file
24
pages/ide/shakespeare.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
import React from "react";
|
||||
import { NextPage } from "next";
|
||||
import Head from "next/head";
|
||||
import { Mainframe } from "../../ui/Mainframe";
|
||||
import LangProvider from "../../languages/shakespeare";
|
||||
const LANG_ID = "shakespeare";
|
||||
const LANG_NAME = "Shakespeare";
|
||||
|
||||
const IDE: NextPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>{LANG_NAME} | Esolang Park</title>
|
||||
</Head>
|
||||
<Mainframe
|
||||
langId={LANG_ID}
|
||||
langName={LANG_NAME}
|
||||
provider={LangProvider}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default IDE;
|
@ -14,5 +14,9 @@
|
||||
{
|
||||
"display": "Deadfish",
|
||||
"id": "deadfish"
|
||||
},
|
||||
{
|
||||
"display": "Shakespeare",
|
||||
"id": "shakespeare"
|
||||
}
|
||||
]
|
||||
]
|
Reference in New Issue
Block a user