organic_ast_explorer/src/App.tsx

14 lines
217 B
TypeScript
Raw Normal View History

2024-01-23 00:41:07 +00:00
import React from "react";
import Editor from "./Editor";
import styles from "./App.module.css";
function App({}) {
return (
<div className={styles.App}>
<Editor />
</div>
);
}
export default App;