Tom Alexander a11201363e
Rename Editor to Explorer.
This component was both the editor and the AST view so it doesn't make sense to call it Editor. Instead the highlightable textarea is going to be moved into a new Editor component.
2024-01-28 17:28:43 -05:00

15 lines
245 B
TypeScript

import React from "react";
import Explorer from "./Explorer";
import styles from "./App.module.css";
import "./reset.css";
function App({}) {
return (
<div className={styles.App}>
<Explorer />
</div>
);
}
export default App;