mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-29 04:30:26 +01:00
6 lines
141 B
React
6 lines
141 B
React
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import App from './app.jsx';
|
||
|
|
||
|
render(<App/>, document.querySelector("#app"));
|