浏览代码

remove unused component

Aykut Saraç 3 年之前
父节点
当前提交
82320ad5d7
共有 1 个文件被更改,包括 0 次插入17 次删除
  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;