I am working on implementing a ReactJS template, but the footer keeps breaking and I need it to stay at the bottom.
The main culprit is the
<div id="root"></div>
. Does anyone know how to fix this issue?
https://i.sstatic.net/xNRKe.png
import React, { Component } from 'react';
import { BrowserRouter as Router, Route, Switch} from 'react-router-dom';
/**
* Import Custom Component
*/
import MainLayout from "./components/layout/MainLayout";
import ErrorPage from "./components/pages/errors/ErrorPage";
...