mirror of
https://github.com/task-17-lct/frontend.git
synced 2025-10-28 05:21:02 +03:00
15 lines
180 B
TypeScript
15 lines
180 B
TypeScript
import React from 'react';
|
|
import { Register } from './pages/Register';
|
|
|
|
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
Hello
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|