UNPKG
@ricepuddin/redux-segment
Version:
latest (1.4.1)
1.4.1
Segment.io analytics integration for redux.
github.com/rangle/redux-segment
rangle/redux-segment
@ricepuddin/redux-segment
/
examples
/
react-redux
/
src
/
components
/
ui
/
Column.js
16 lines
(12 loc)
•
279 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
React
from
'react'
;
const
Column
= (
{ children, className =
''
, style = {} }
) => {
return
(
<
div
className
=
{
`
col
${
className
}` }
style
=
{{
...styles.base
,
...style
}}>
{ children }
</
div
>
); };
const
styles = {
base
: {}, };
export
default
Column
;