Commit 2f4a6b98 authored by Dilip Wijethunga's avatar Dilip Wijethunga

Customer dashboard update

parent 11ae4cdc
import React, {Fragment} from "react";
import CommonCheckAuth from "../services/CommonAuthCheck";
import CustomerDashboard from "../components/dashboard/customer/CustomerDashboard";
import NavbarCustomer from "../components/dashboard/customer/NavbarCustomer";
import MetaTags from "react-meta-tags";
function CustomerDashboardHome() {
return (
<Fragment>
<MetaTags>
<title>CRYPTO FORETELLER | Customer Dashboard</title>
<meta
name="description"
content="About bitcoin page of CRYPTO FORETELLER"
/>
</MetaTags>
<NavbarCustomer/>
<div>
<CustomerDashboard/>
</div>
</Fragment>
);
}
export default CommonCheckAuth(CustomerDashboardHome);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment