Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 445 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 445 Bytes

react-spongebob-text-component

A react component rendering text as a SpongeBob meme.

Install

npm install react-spongebob-text-component

or if you use yarn

yarn add react-spongebob-text-component

Usage

import SpongeBobTextComponent from 'react-spongebob-text-component';

const CustomComponent = () => {
  return <SpongeBobTextComponent text={"Lorem ipsum dolor sit amet"} />;
};

export default CustomComponent;