| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This reusable React component will manage to blink any text and changing the text color and font size if we need.
Blink takes plain HTML tags and outputs plain HTML tags. It's dead simple, and React beginner friendly.
import React, { Component } from "react";
import Blink from 'react-blink-text';
function Application(){
return (
<div className="Application">
<Blink color='blue' text='TestReactApp' fontSize='20'>
Testing the Blink
</Blink>
</div>
);
}
export default Application;
yarn add react-blink-text
npm install --save react-blink-text
| Back | FazBrowse Home | New Git URL |