@wordpress/components
Version:
UI components for WordPress.
19 lines (16 loc) • 387 B
JavaScript
/**
* Internal dependencies
*/
import { View } from '../../index';
import { Scrollable } from '../index';
export default {
component: Scrollable,
title: 'G2 Components (Experimental)/Scrollable',
};
export const _default = () => {
return (
<Scrollable style={ { height: 400, width: 300 } }>
<View style={ { backgroundColor: '#eee', height: 1000 } } />
</Scrollable>
);
};