I am working on a portfolio with React.js and I have used react-particles-js for my background but it works as a component.
I want this component as a background.
Is there any other alternative of react-particles-js?
This is my Home.js
import Particle from "../Particle";
import Pro from '../../Assets/Pro.svg'
import { Container, Row, Col } from "react-bootstrap";
function Home() {
return (
<section>
<Container fluid className='home-section'>
<Particle />
<Container className='home-content'>
<Row>
<Col md={5} >
<img src={Pro} alt="home pic" className="img-fluid" />
</Col>
</Row>
</Container>
</Container>
</section>
);
}
export default Home;