Skip to content

Commit

Permalink
delete
Browse files Browse the repository at this point in the history
  • Loading branch information
istarkov committed Apr 29, 2024
1 parent f4e5aa0 commit 19bb7ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/sdk-components-react/src/xml-node.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { componentAttribute } from "@webstudio-is/react-sdk";
import { Children, forwardRef, type ElementRef, type ReactNode } from "react";

export const defaultTag = "div";
Expand All @@ -7,7 +6,7 @@ export const defaultTag = "div";
type Props = {
tag: string;
children: ReactNode;
} & Record<typeof componentAttribute, string>;
};

export const XmlNode = forwardRef<ElementRef<"div">, Props>(
({ tag = "", children, ...props }, ref) => {
Expand Down

0 comments on commit 19bb7ec

Please sign in to comment.