mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-18 11:14:57 +02:00
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
import React, { Component } from 'react';
|
|
|
|
export default class App extends Component {
|
|
render() {
|
|
return (
|
|
<h1>Hello, world</h1>
|
|
);
|
|
}
|
|
}
|