New row compontent to prevent it intefering with everything else + link colours changed
This commit is contained in:
parent
431757cea4
commit
81f97c1331
1 changed files with 14 additions and 0 deletions
14
client/src/components/RowLabeledAlt/index.jsx
Normal file
14
client/src/components/RowLabeledAlt/index.jsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import React from 'react';
|
||||
|
||||
class RowLabeledAlt extends React.Component {
|
||||
render () {
|
||||
return (
|
||||
<div className={'row-labeled-alt'}>
|
||||
<div className={'row-labeled-label'}>{this.props.label}</div>
|
||||
<div className={'row-labeled-content'}>{this.props.content}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default RowLabeledAlt;
|
Loading…
Reference in a new issue