mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-05-23 16:27:41 +08:00
13 lines
164 B
TypeScript
13 lines
164 B
TypeScript
import './App.css';
|
|
import { SelectFile } from './SelectFile';
|
|
|
|
function App() {
|
|
return (
|
|
<main>
|
|
<SelectFile />
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default App;
|