Browse Source

remove unused component

Aykut Saraç 3 years ago
parent
commit
82320ad5d7
1 changed files with 0 additions and 17 deletions
  1. 0 17
      src/containers/LiveEditor/CustomNode/ArrayNode.tsx

+ 0 - 17
src/containers/LiveEditor/CustomNode/ArrayNode.tsx

@@ -1,17 +0,0 @@
-import React from "react";
-import { CustomNodeProps } from ".";
-import * as Styled from "./styles";
-
-const ArrayNode: React.FC<CustomNodeProps<string>> = ({ width, height, value }) => {
-  return (
-    <Styled.StyledForeignObject width={width} height={height} x={0} y={0}>
-      <Styled.StyledTextWrapper>
-        <Styled.StyledText width={width} height={height}>
-          <Styled.StyledKey arrayValue>{value}</Styled.StyledKey>
-        </Styled.StyledText>
-      </Styled.StyledTextWrapper>
-    </Styled.StyledForeignObject>
-  );
-};
-
-export default ArrayNode;