File size: 246 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import DotPager from '../';

export default function DotPagerExample() {
	return (
		<DotPager hasDynamicHeight>
			<div>Item 1</div>
			<div>Item 2</div>
			<div>Item 3</div>
		</DotPager>
	);
}

DotPagerExample.displayName = 'DotPagerExample';