diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 15:51:24 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 15:51:24 -0600 |
commit | 7916b26aadb7e003728d9dc653ab8b8deabf4076 (patch) | |
tree | 507d24512fd71c67d4fe49af4ae5f8746444cceb /src/view/com/modals/crop-image/CropImage.tsx | |
parent | 0673129b2018c9db0f7c3fc3e2c3214150efcfb8 (diff) | |
download | voidsky-7916b26aadb7e003728d9dc653ab8b8deabf4076.tar.zst |
Break out the web/native image picking code and make some progress on the web version
Diffstat (limited to 'src/view/com/modals/crop-image/CropImage.tsx')
-rw-r--r-- | src/view/com/modals/crop-image/CropImage.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/view/com/modals/crop-image/CropImage.tsx b/src/view/com/modals/crop-image/CropImage.tsx new file mode 100644 index 000000000..9ac3f277f --- /dev/null +++ b/src/view/com/modals/crop-image/CropImage.tsx @@ -0,0 +1,11 @@ +/** + * NOTE + * This modal is used only in the web build + * Native uses a third-party library + */ + +export const snapPoints = ['0%'] + +export function Component() { + return null +} |