tp-react-elemental
Version:
19 lines (15 loc) • 386 B
JavaScript
import React, { Component } from 'react'
import Alert from '../../src/components/Alert'
class AlertDemo extends Component {
render() {
return(
<div>
<Alert type="warning">
<h4>Heading</h4>
<strong>Error:</strong> You need to take action, something has gone terribly wrong!
</Alert>
</div>
)
}
}
module.exports = AlertDemo