react-get-ui
v1.0.11
Published
React Get UI is a lightweight, modular UI component library designed for React applications. It aims to provide developers with easy-to-use, animated components that can enhance the user interface of any React project.
Downloads
7
Readme
React Get UI
React Get UI is a lightweight, modular UI component library designed for React applications. It aims to provide developers with easy-to-use, animated components that can enhance the user interface of any React project.
Features
- AutoTypingText: A component that simulates typing animation for any given text.
- AnimatedCounter: A component that creates a smooth counting animation, useful for displaying numbers in a dynamic and engaging way.
Installation
To use React Get UI in your project, you can install it via npm:
npm install react-get-ui
Usage
After installation, you can import and use the components in your React application:
import React from 'react';
import { AutoTypingText, AnimatedCounter } from 'react-get-ui';
const App = () => {
return (
<div>
<AutoTypingText text="Hello, world!" />
<AnimatedCounter targetNumber={1000} />
</div>
);
};
export default App;
Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue if you have any suggestions or find any bugs.
License
This project is licensed under the ISC License. See the LICENSE file for more details.
Author
Gaëtan BIORD
This README provides a basic overview of your project, including how to install, use, and contribute to it. Adjust the content as necessary to fit your project's specific details and requirements.