index.js
505 Bytes
import React from 'react'
import {Card} from 'antd'
import './index.less'
const {Meta} = Card
export default class whiteBar extends React.Component {
render() {
return (
<div className="cont">
<Card className="title">
<Meta className="meta"
title={<div style={{width: 5, backgroundColor: '#5668db', marginLeft: 18}}><span
style={{marginLeft: 20}}>{this.props.title}</span></div>}>
</Meta>
</Card>
</div>
)
}
}