mirror of
https://github.com/google-map-react/google-map-react.git
synced 2025-12-08 18:26:32 +00:00
* Add isNumber * Update babel, remove lodash deps * develop first commit * Fix zIndex * Add readme * Fix tests * Fix build issues * Update travis build
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
// file: main.jsx
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import Layout from './Layout.js';
|
|
|
|
import 'normalize.css/normalize.css';
|
|
import './Main.sass';
|
|
|
|
const mountNode = document.getElementById('app');
|
|
|
|
render(<Layout />, mountNode);
|