blob: b13c7793c6fb0744d4e2d9d53ff0711aff464ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from 'react'
import ReactDOM from 'react-dom'
import './index.css'
import '../node_modules/font-awesome/css/font-awesome.css'
import '../fonts/beachbar-bold/beachbar-bold.css'
import Layout from './components/layout/layout'
ReactDOM.render(<Layout />, document.getElementById('root'))
|