Giter Site home page Giter Site logo

framer-bridge-starter-kit's Introduction

Framer Bridge Starter Kit

Framer Bridge is a suite of tools:

  • That allows you to automatically publish and distribute components to designers with Framer and the Framer Store.
  • Import in production components built by your engineers. It’s an automatic and continually synced workflow, one that is customizable to your existing development workflow.

This repository links together folder backed Framer projects with the Framer CLI and GitHub actions/CircleCI for an easy package publication flow.

🏁 Getting started

Cloning

  1. Fork this repository.
  2. Clone the forked repository locally
  3. Run yarn to install dependencies

Inside the repository directory, you will find two key folders:

Editing

From here, you can continue modifying the existing design-system.framerfx file. If you edit any of the components in design-system, they will automatically get updated in Framer too.

If you want to import your own design system, you can replace both files with your own. Make sure that your Framer project is folder backed.

Publishing

  1. From the terminal, run:
    npx framer-cli authenticate <your-framer-account-email>
  2. If the package has not been previously published to the store, publish the package for the first time by running
    env FRAMER_TOKEN=<token> npx framer-cli publish <package-name.framerfx> --new="<Display Name>"

πŸ€– Using GitHub actions

If you have access to the GitHub actions beta, you can use this repository to automate the deployment of your Framer package to the store without needing any external services.

  1. Modify the args property in the Build and Publish actions inside .github/main.workflow with the path of your Framer package, eg:

     action "Build" {
       uses = "framer/bridge@master"
       args = ["build", <your-project-path.framerfx>]
     }
    
     action "Publish Filter" {
       needs = ["Build"]
       uses = "actions/bin/filter@master"
       args = "branch master"
     }
    
     action "Publish" {
       uses = "framer/bridge@master"
       args = ["publish", <your-project-path.framerfx>, "--yes"]
       needs = ["Build", "Publish Filter"]
       secrets = ["FRAMER_TOKEN"]
     }
  2. In GitHub, navigate to the forked repository and set the FRAMER_TOKEN via the GitHub UI for the .github/main.workflow publish step (accessible by navigating the file structure on the homepage of the repository).

  3. Push a commit to the master branch and watch as the GitHub actions pick up the commit, build the package, publish it to the Framer Store.

🚚 Using CI

As an example of integrating framer-cli with an external CI service, there is a small CircleCI configuration included in this repository that publishes the given package to the Framer store every time a commit is made to the master branch.

To integrate with CircleCI:

  1. Connect your repository with CircleCI.

  2. Add the FRAMER_TOKEN environment variable in the CI project settings.

  3. Update the .circleci/config.yml with your project path, e.g.:

    # Javascript Node CircleCI 2.0 configuration file
    #
    # Check https://circleci.com/docs/2.0/language-javascript/ for more details
    #
    version: 2
    jobs:
      publish:
        docker:
          - image: circleci/node:10
    
        working_directory: ~/repo
    
        steps:
          - checkout
          - run: yarn
          - run: npx framer-cli publish <your-project-path.framerfx> --yes
    
    workflows:
      version: 2
      publish:
        jobs:
          - build
          - publish:
              filters:
                branches:
                  only: master
  4. Publish a brand new version of your package to the Framer store by pushing a commit on the master branch.

framer-bridge-starter-kit's People

Contributors

fverloop avatar koenrh avatar lincmitch avatar lintonye avatar

Watchers

 avatar

Forkers

lintonye

framer-bridge-starter-kit's Issues

Local image

The Card component references a URL. There should be an option for a local image file too.

FramerX V34 warnings

I am getting warnings after upgrading to Framer X v34.

Here is the Preview window console log:

`
20
Console
Warning: Each child in a list should have a unique "key" prop.

Check the render method of Card. See https://fb.me/react-warning-keys for more information.
in CardPrimaryAction (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: Each child in a list should have a unique "key" prop.

Check the render method of CardPrimaryAction. See https://fb.me/react-warning-keys for more information.
in CardMedia (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the parentSize prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase parentsize instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardMedia)
in CardMedia (created by Context.Consumer)
in StyledComponent (created by Styled(CardMedia))
in Styled(CardMedia) (created by CardMedia)
in CardMedia (created by CardPrimaryAction)
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalObject prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalobject instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardMedia)
in CardMedia (created by Context.Consumer)
in StyledComponent (created by Styled(CardMedia))
in Styled(CardMedia) (created by CardMedia)
in CardMedia (created by CardPrimaryAction)
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeObjectIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activeobjectindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardMedia)
in CardMedia (created by Context.Consumer)
in StyledComponent (created by Styled(CardMedia))
in Styled(CardMedia) (created by CardMedia)
in CardMedia (created by CardPrimaryAction)
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the __slotKeys prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase __slotkeys instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardMedia)
in CardMedia (created by Context.Consumer)
in StyledComponent (created by Styled(CardMedia))
in Styled(CardMedia) (created by CardMedia)
in CardMedia (created by CardPrimaryAction)
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalCardMedia prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalcardmedia instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeCardMediaIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activecardmediaindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardPrimaryAction)
in CardPrimaryAction (created by ForwardRef)
in Ripple (created by ForwardRef)
in ForwardRef (created by Context.Consumer)
in withRipple(CardPrimaryAction) (created by CardPrimaryAction)
in CardPrimaryAction (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: Each child in a list should have a unique "key" prop.

Check the render method of CardActions. See https://fb.me/react-warning-keys for more information.
in CardActionButtons (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: Each child in a list should have a unique "key" prop.

Check the render method of CardActionButtons. See https://fb.me/react-warning-keys for more information.
in CardActionButton (created by CardActionButtons)
in CardActionButtons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalCardActionButton prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalcardactionbutton instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardActionButtons)
in CardActionButtons (created by CardActionButtons)
in CardActionButtons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeCardActionButtonIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activecardactionbuttonindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardActionButtons)
in CardActionButtons (created by CardActionButtons)
in CardActionButtons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: Each child in a list should have a unique "key" prop.

Check the render method of CardActionIcons. See https://fb.me/react-warning-keys for more information.
in CardActionIcon (created by CardActionIcons)
in CardActionIcons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalCardPrimaryAction prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalcardprimaryaction instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardActionIcons)
in CardActionIcons (created by CardActionIcons)
in CardActionIcons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeCardPrimaryActionIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activecardprimaryactionindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by CardActionIcons)
in CardActionIcons (created by CardActionIcons)
in CardActionIcons (created by CardActions)
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalCardPrimaryActionsAndButtons prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalcardprimaryactionsandbuttons instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeCardPrimaryActionsAndButtonsIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activecardprimaryactionsandbuttonsindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in section (created by CardActions)
in CardActions (created by CardActions)
in CardActions (created by Card)
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the externalCardStandardAndPrimaryAction prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase externalcardstandardandprimaryaction instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the activeCardStandardAndPrimaryActionIndex prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase activecardstandardandprimaryactionindex instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview
Warning: React does not recognize the willChangeTransform prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase willchangetransform instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in div (created by Card)
in Card (created by Card)
in Card (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Stack)
in Unknown (created by Stack)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Stack)
in Stack (created by Stack)
in Stack (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in div (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Scroll)
in Scroll (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ComponentContainer)
in ComponentContainer (created by PreviewRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by ForwardRef(Frame))
in ForwardRef(Frame) (created by PreviewRenderer)
in Unknown (created by DeprecatedFrame)
in div (created by DeprecatedFrame)
in DeprecatedFrame (created by Context.Consumer)
in WithEventsHOC (created by NavigationContainer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by NavigationContainer)
in NavigationContainer (created by Navigation)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Navigation)
in Navigation (created by PreviewRenderer)
in DataObserver (created by PreviewRenderer)
in MotionPlugins (created by DeviceRenderer)
in Unknown (created by ForwardRef)
in div (created by RenderComponent)
in RenderComponent (created by ForwardRef(MotionComponent))
in ForwardRef(MotionComponent) (created by ForwardRef)
in ForwardRef (created by ForwardRef(FrameWithMotion))
in ForwardRef(FrameWithMotion) (created by Screen)
in MouseEventListener (created by Screen)
in Screen (created by DeviceRenderer)
in div (created by DeviceRenderer)
in DeviceRenderer (created by _a)
in div (created by _a)
in _a (created by PreviewRenderer)
in div (created by PreviewRenderer)
in PreviewRenderer (created by WindowSizedPreviewRenderer)
in WindowSizedPreviewRenderer (created by Preview)
in div (created by CustomProperties)
in CustomProperties (created by Preview)
in Preview`

Add Div component

In the Card example https://rmwc.io/cards, you can add a Div to space out content.
In Framer X you use Stacks but this doesn't seem to work as overlaps CardMedia
It would be handy to create a Div Component and show Div Styling in Framer X props.
For now, Typography is being layed out with manually using Padding and Margin props.

Make interactive

When you add a Frame to a RMWC component (like an icon) and then link the fra,e to another frame. The icon may get overlapped by other elements on the screen. This is only visible in the preview window.

Rather than having to add a frame, it would be great if a frame could be targeted another way.
Maybe via overrides or something.

e.g
image

image

A solution is to create an overlapping frame, but that is not connected to the icon and it also doesn't trigger the icon's onclick animation.

Create sub-components via props

It would be better if a components sub-components could be created via props.

Example:
Currently, I have to physically build a card by linking up sub-components on the canvas. Which duplicates a lot of elements.

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.