mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-26 18:04:20 +00:00
13 lines
179 B
JavaScript
13 lines
179 B
JavaScript
|
import './style';
|
||
|
import { Component } from 'preact';
|
||
|
|
||
|
export default class App extends Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>Hello, World!</h1>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|