mirror of
https://github.com/Lissy93/web-check.git
synced 2025-04-11 11:08:23 +02:00
15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
import React from 'react';
|
|
import Demo from 'components/Demo';
|
|
import 'App.css';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<h1>Hello 👋</h1>
|
|
<Demo message="React is Dumb," />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|