99.10.0 • Published 4 years ago

@temporg/fx-motion v99.10.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

category: packages

fx-motion

npm  build-status  MIT License  Code of Conduct

Components

The fx-motion package contains the following:

Installation

yarn add @temporg/fx-motion

Usage

import React from 'react'
import { Heading } from '@temporg/ui-heading'
import { Transition } from '@temporg/fx-motion'

const HeadingWithTransition = () => {
  return (
    <Transition transitionOnMount in>
      <Heading>Hi there!</Heading>
    </Transition>
  )
}