mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2024-11-24 04:22:15 +00: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;
|