summaryrefslogtreecommitdiff
path: root/src/index.js
blob: 08ea033d200e9a7401784dd2c2bbb1c43ef84451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'))

export default Layout