mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a92a5caec2
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
export default class extends React.Component {
|
|
static contextTypes = {
|
|
data: PropTypes.object,
|
|
}
|
|
|
|
render() {
|
|
const { data } = this.context
|
|
return <div>{data.title}</div>
|
|
}
|
|
}
|