vraj
v1.0.5
Published
A simple React component that displays a full-screen scrolling marquee effect. The default name displayed is **"VRAJ"**, but users can customize it by passing a `name` prop. It will only works in React
Readme
vraj
A simple React component that displays a full-screen scrolling marquee effect. The default name displayed is "VRAJ", but users can customize it by passing a name prop. It will only works in React
If no name is provided, the default "VRAJ" will be displayed.
🎨 Customization You can pass a custom name as a prop:
The component will automatically adapt to the screen height and keep scrolling.
Import the Vraj component into your React project and use it as follows:
🚀 Installation
You can install this package using npm :
npm install vraj
import Vraj from "vraj";
function App() {
return (
<div>
<h1>My App Content</h1>
<Vraj name="Your Custom Name" /> {/* Replace with your name */}
</div>
);
}
export default App;
