UNPKG

@ieltsrealtest/ui

Version:

Reusable UI components for IELTS Real Test platform, built with React and TypeScript.

37 lines (29 loc) 651 B
# @ieltsrealtest/ui Reusable React UI components for the IELTS Real Test platform, built with TypeScript and styled using Tailwind CSS. --- ## Installation ```bash npm i @ieltsrealtest/ui ``` ## Setup Notes ### tailwind.config.js ``` bash content: [ "./node_modules/@ieltsrealtest/ui-components/dist/**/*.{js,ts,jsx,tsx}" ] ``` ### globals.css ```bash @import "tailwindcss"; @config "../../tailwind.config.js"; ``` ### next.config.ts (optional for Figma-hosted images) ```bash images: { domains: ['s3-alpha-sig.figma.com'], } ``` ## Usage ``` bash import { Header, Footer } from "@ieltsrealtest/ui"; ```