@wix/design-system
Version:
@wix/design-system
18 lines • 596 B
JavaScript
import React from 'react';
// This object should contain a mock value for each required prop of this component
export const requiredProps = {
open: true,
children: React.createElement("div", null, "Drawer"),
onClose: () => { },
};
const props = { ...requiredProps };
// This array should contain an object only for tests you wish to run on all compliance tests
const sharedTests = [
{
props,
},
];
export const testkitTests = [...sharedTests];
export const ssrTests = [...sharedTests];
export const a11yTests = [...sharedTests];
//# sourceMappingURL=Drawer.meta.js.map