This repository has been archived on 2020-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
sample-react-context/src/Home.js

13 lines
218 B
JavaScript
Raw Normal View History

2020-03-15 22:00:13 +01:00
import React, { useContext } from 'react'
import Context from './Context'
function Home () {
const { page } = useContext(Context)
page.title = 'Home'
return (
<p>Hello, World!</p>
)
}
export default Home