apeman-react-jumbotron
Version:
apeman react components for jumbotron
27 lines (23 loc) • 687 B
JSX
import React from 'react'
import {ApContainer} from 'apeman-react-basic'
import {ApJumbotron, ApJumbotronStyle} from 'apeman-react-jumbotron'
const ExampleComponent = React.createClass({
render () {
return (
<div>
<ApJumbotronStyle/>
<ApJumbotron imgSrc="./images/fuge/hoge.png"
imgFilter="#rgba(0,0,0,0.5)">
<ApContainer>
<ApJumbotronTitle>Hello World!</ApJumbotronTitle>
<ApJumbotronText>
Web development should be more easy, and fun.
Yes, with apeman.
</ApJumbotronText>
</ApContainer>
</ApJumbotron>
</div>
)
}
})