mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-12 12:34:39 +00:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import App from './dapp';
|
||
|
|
||
|
render(
|
||
|
<App />,
|
||
|
document.getElementById('app')
|
||
|
);
|