mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-22 17:54:45 +02:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
import * as React from 'react';
|
|
import { hot } from 'react-hot-loader/root';
|
|
|
|
class App extends React.PureComponent {
|
|
render () {
|
|
return (
|
|
<h1>Hello</h1>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default hot(App);
|