drawDB/src/App.js

12 lines
141 B
JavaScript
Raw Normal View History

2023-09-19 20:46:59 +08:00
import Editor from "./pages/editor";
2023-09-19 20:46:33 +08:00
function App() {
return (
2023-09-19 20:46:46 +08:00
<>
2023-09-19 20:46:59 +08:00
<Editor name="Untitled"/>
2023-09-19 20:46:46 +08:00
</>
2023-09-19 20:46:33 +08:00
);
}
export default App;