123456789101112131415161718192021222324 |
- import { computed, defineComponent, reactive } from "vue";
- import LibraryModal from "../website/CreateMat/components/LibraryModal";
- import { css, cx } from "@linaria/core";
- export default defineComponent({
- setup() {
- return () =>(
- <div class={rootStyles}>
- <LibraryModal nodeTypes={["matGroupItem", "mat", "packMat"]} />
- </div>
-
- // <div>hello</div>
- );
- },
- });
- const rootStyles = css`
- > div {
- margin: unset !important;
- }
- `;
|