mirror of
https://github.com/t4t5/nostr-react.git
synced 2025-12-04 09:42:10 +01:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
import 'react-app-polyfill/ie11';
|
|
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
import { Thing } from '../.';
|
|
|
|
const App = () => {
|
|
return (
|
|
<div>
|
|
<Thing />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|