'use strict'; import React, { useEffect } from 'react'; import Layout from './layout'; import Auth from './sections/auth'; import Example from './sections/example'; import Example1 from './sections/example1'; import NoMatch from './sections/noMatch'; const App = props => { const { projectName } = props useEffect(() => { document.title = projectName; }, []) return ( ) } export default App;