Advertisement
Guest User

Untitled

a guest
May 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. --- a/product-card.framerfx/code/List.tsx
  2. +++ b/product-card.framerfx/code/List.tsx
  3. @@ -1,18 +1,13 @@
  4. import * as React from 'react'
  5. import { Frame, useCycle, Stack } from 'framer'
  6. +import { Card } from './Card'
  7.  
  8. export function List() {
  9. return (
  10. - <Stack
  11. - gap={0}
  12. - distribution="center"
  13. - width="100%"
  14. - height="100%"
  15. - background="pink"
  16. - >
  17. - <Frame />
  18. - <Frame />
  19. - <Frame />
  20. + <Stack gap={20} distribution="center" width="100%" height="100%">
  21. + <Card />
  22. + <Card />
  23. + <Card />
  24. </Stack>
  25. )
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement