import React from 'react'; import styles from './ExtensionRoot.module.scss'; import '@unocss/reset/tailwind-compat.css'; import 'uno.css'; interface Props { testId?: string; } /** * A wrapper component for the extension elements that adds some basic styling to them */ export default function ExtensionRoot(props: React.PropsWithChildren) { return (
{props.children}
); }