UNPKG

@ricepuddin/redux-segment

Version:

Segment.io analytics integration for redux.

16 lines (12 loc) 238 B
import React from 'react'; const FormLabel = ({ children, style = {} }) => { return ( <label style={{ ...styles.base, ...style }}> { children } </label> ); }; const styles = { base: {}, }; export default FormLabel;