14 lines
180 B
JavaScript
14 lines
180 B
JavaScript
|
import React from 'react'
|
||
|
|
||
|
class PropsExample extends React.Component {
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<span>{ this.props.text }</span>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default PropsExample
|