Files
wdi-dashboard/node_modules/@chakra-ui/skeleton/README.md
2024-08-16 15:06:52 +05:30

32 lines
540 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# @chakra-ui/skeleton
Skeleton page is used to provide a low fidelity representation of the user
interface (UI) before content appears on the page
A skeleton screen is a user experience pattern thats shown to reduce load time
frustration. They create better “perceived performance”.
## Installation
```sh
yarn add @chakra-ui/skeleton
# or
npm i @chakra-ui/skeleton
```
## Import component
```jsx
import { Skeleton } from "@chakra-ui/skeleton"
```
## Usage
```jsx
<Skeleton>
<span>Chakra ui is cool</span>
</Skeleton>
```