UNPKG

instantjob-recruiter-client

Version:

a set of tools for creating an instantjob recruiter react client

10 lines (7 loc) 266 B
import React, {Component} from 'react' const HorizontalScrollableView = ({children}) => ( <div style={{flex: 1, display: 'flex', overflowX: 'scroll', alignItems: 'stretch', overflowY: 'hidden'}}> {children} </div> ) export default HorizontalScrollableView