1 | import React from 'react';
|
2 | import { testForChildrenInComponent } from '../testUtils';
|
3 | import { PopoverBody } from '..';
|
4 |
|
5 | describe('PopoverBody', () => {
|
6 | it('should render children', () => {
|
7 | testForChildrenInComponent(PopoverBody);
|
8 | });
|
9 | });
|