Skip to content

Files

Latest commit

 

History

History
30 lines (23 loc) · 700 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 700 Bytes

React-UI

storybook

useage

npm i @cyhfe/react-ui
import { PopupRoot, PopupTrigger, PopupContent } from "@cyhfe/react-ui";

export function Base() {
  return (
    <PopupRoot className="flex justify-center items-center">
      <PopupTrigger className="border border-black rounded px-2 py-1">
        <div>trigger</div>
      </PopupTrigger>
      <PopupContent className="p-2 shadow max-w-sm border rounded">
        Ut aliquip esse ipsum nisi.
      </PopupContent>
    </PopupRoot>
  );
}

screenshot

react-ui