Last active
May 1, 2019 17:01
-
-
Save ruucm-working/e034f95a1cc6d695909ca06102a3e92d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /dev/null | |
+++ b/appstore-tap-bin.framerfx/code/App.tsx | |
@@ -0,0 +1,13 @@ | |
+import { Override, Data } from 'framer' | |
+ | |
+// Override Docs: https://framer.com/docs/overrides | |
+ | |
+const data = Data({ | |
+ imgWidth: 340, | |
+}) | |
+ | |
+export function Img(): Override { | |
+ return { | |
+ width: data.imgWidth, | |
+ } | |
+} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment