JSPM

@instructure/ui-motion

11.2.1-snapshot-9
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11950
  • Score
    100M100P100Q140850F
  • License MIT

A UI component library made by Instructure Inc.

Package Exports

  • @instructure/ui-motion
  • @instructure/ui-motion/es/index.js
  • @instructure/ui-motion/lib/Transition
  • @instructure/ui-motion/lib/Transition/index.js
  • @instructure/ui-motion/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-motion) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ui-motion

npm MIT License Code of Conduct

Components

The ui-motion package contains the following:

Installation

npm install @instructure/ui-motion

Usage

import React from 'react'
import { Heading } from '@instructure/ui-elements'
import { Transition } from '@instructure/ui-motion'

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