mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-11 03:56:20 +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')
|
|
);
|