Skip to content

Commit ff9b514

Browse files
committed
remove canvasGrid
1 parent b5b396b commit ff9b514

File tree

3 files changed

+0
-69
lines changed

3 files changed

+0
-69
lines changed

packages/react-ape/reactApeEntry.js

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ export const render = ReactApeRenderer.render;
2323
export const Image = 'Image';
2424
export const View = 'View';
2525
export const Text = 'Text';
26-
export const Tools = {
27-
Grid: 'CanvasGrid',
28-
};
2926

3027
export const StyleSheet = StyleSheetModule;
3128
export const Dimensions = DimensionsModule;

packages/react-ape/renderer/elements/CanvasGrid.js

-64
This file was deleted.

packages/react-ape/renderer/reactApeComponent.js

-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import Image from './elements/Image';
1010
import Text from './elements/Text';
1111
import View from './elements/View';
12-
import CanvasGrid from './elements/CanvasGrid';
1312
import {CustomComponents} from '../modules/Register';
1413

1514
const CHILDREN = 'children';
@@ -36,7 +35,6 @@ const ReactApeComponent = {
3635
...customDict,
3736
Image: Image(props),
3837
Text: Text(props),
39-
CanvasGrid: CanvasGrid(props),
4038
View: new View(props),
4139
};
4240

0 commit comments

Comments
 (0)