Source: explore_page/Explore.js

import React from "react";
import Sidebar from "../home_page/Sidebar";


/**
 * This is the Explore function which creates the explore page
 *
 * @returns The explore page user interface
 */
function Explore() {
    return (
        <div className="Home">
            <Sidebar />
        </div>
    );
}

export default Explore;