import React from 'react'; import '../../../../src/styles'; import clsx from 'clsx'; export const TestWrapper: React.FC<{ theme?: 'dark' | 'light'; }> = (props) => { const { theme = 'dark' } = props; return (
{props.children}
); }; TestWrapper.displayName = 'TestWrapper';