99.10.0 • Published 4 years ago

@temporg/ui-position v99.10.0

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

category: packages

ui-position

npm  build-status  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

yarn add @temporg/ui-position

Usage

For detailed usage and documentation, see Position.

import React from 'react'
import { Position } from '@temporg/ui-position'

const MyPosition = () => {
  return (
    <Position renderTarget={<div>Target</div>}>
      Hello world
    </Position>
  )
}