mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 00:35:00 +00:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
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>
|
|
))
|