I unable to integrate javascript file in react js to jQuery functions for front end designing.
I am new to react and i have completed my components, now I want to design it using css and jQuery. For this purpose I have different files for css and jQuery. I have successfully integrated css but cannot load functions from jQuery file to react component.
I have given a path in index.html file in public folder like below:
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>React App</title>
<meta name="description" content="MileStone">
<meta name="keywords" content="Portfolio">
<title>React App</title>
</head>
<body>
<div id="root"></div>
<script src="./../src/js/scripts.min.js"></script>
<script src="./../src/js/main.min.js"></script>
<script src="./../src/js/custom.js"></script>
</body>
Any suggestions?