mirror of
https://github.com/audible-tools/audible-tools.github.io.git
synced 2026-01-23 07:10:47 +00:00
15 lines
219 B
JavaScript
15 lines
219 B
JavaScript
import React from 'react';
|
|
import logo from './logo.svg';
|
|
import './App.css';
|
|
import SignIn from './SignIn';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<SignIn/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|