Files
cartlog-admin/node_modules/reactstrap/esm/__tests__/PopoverBody.spec.js
2026-01-01 15:25:19 +05:30

8 lines
257 B
JavaScript

import React from 'react';
import { testForChildrenInComponent } from '../testUtils';
import { PopoverBody } from '..';
describe('PopoverBody', function () {
it('should render children', function () {
testForChildrenInComponent(PopoverBody);
});
});