JSPM

@instructure/ui-position

10.13.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2768
  • Score
    100M100P100Q145807F
  • License MIT

A component for positioning content with respect to a designated target.

Package Exports

    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-position) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme


    category: packages

    ui-position

    npm MIT License Code of Conduct

    A component for positioning content with respect to a designated target.

    Components

    The ui-position package contains the following:

    Installation

    npm install @instructure/ui-position

    Usage

    For detailed usage and documentation, see Position.

    import React from 'react'
    import { Position } from '@instructure/ui-position'
    
    const MyPosition = () => {
      return <Position renderTarget={<div>Target</div>}>Hello world</Position>
    }