1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/source/components/BlueButton.js

12 lines
302 B
JavaScript
Raw Normal View History

import React from 'react'
import './BlueButton.css'
import { connect } from 'react-redux'
export default connect(state => ({
themeColours: state.themeColours
}))(({ themeColours, children }) => (
<button className="blueButton" style={{ background: themeColours.colour }}>
{children}
</button>
))