summaryrefslogtreecommitdiff
path: root/src/index.js
blob: 7bc5a5c2a29b2a091c4420db1509d4464d79e67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react'
import ReactDOM from 'react-dom'

import Layout from './components/layout/layout'

import  './index.css'
import '../node_modules/font-awesome/css/font-awesome.css'
import '../fonts/beachbar-bold/beachbar-bold.css'

ReactDOM.render(<Layout />, document.getElementById('root'))

export default Layout