drawDB/src/App.js

12 lines
135 B
JavaScript
Raw Normal View History

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