ui_element
v1.2.3
Published
useful components for website,easy to use component like nevbar,footer, form ,card etc.
Downloads
4
Readme
npm-package
asd ui_element is a package that contains all the necessary animations required by a user. It covers different types of loaders, buttons, and scroll watchers, etc.
Table of Contents
Installation
To install the package, use the command:
npm i ui_element
How to Import
The best way to import components of ui_element is through direct import of the modules.
import {card,footer,form,navbar } from 'ui_element';
Example to import components are as follows:
card
import {card} from 'ui_element'
const App=()=>{
return(
<>
<card/>
</>
)
}
export default App
footer
import {footer} from 'ui_element'
const App=()=>{
return(
<>
<footer/>
</>
)
}
export default App
form
import {form} from 'ui_element'
const App=()=>{
return(
<>
<form/>
</>
)
}
export default App
Navbar
import {navbar} from 'ui_element'
const App=()=>{
return(
<>
<navbar/>
</>
)
}
export default App