@ricepuddin/redux-segment
Version:
Segment.io analytics integration for redux.
20 lines (16 loc) • 348 B
JavaScript
import React from 'react';
const Navigator = ({ children }) => {
return (
<div
className="flex flex-stretch flex-center p1 bg-white black border-bottom fixed top-0 left-0 right-0 z3"
styles={ styles.base }>
{ children }
</div>
);
};
const styles = {
base: {
height: '10rem',
},
};
export default Navigator;