selectMat.tsx 490 B

123456789101112131415161718192021222324
  1. import { computed, defineComponent, reactive } from "vue";
  2. import LibraryModal from "../website/CreateMat/components/LibraryModal";
  3. import { css, cx } from "@linaria/core";
  4. export default defineComponent({
  5. setup() {
  6. return () =>(
  7. <div class={rootStyles}>
  8. <LibraryModal nodeTypes={["matGroupItem", "mat", "packMat"]} />
  9. </div>
  10. // <div>hello</div>
  11. );
  12. },
  13. });
  14. const rootStyles = css`
  15. > div {
  16. margin: unset !important;
  17. }
  18. `;