Files
bodyshop/client/src/pages/landing/landing.page.jsx
2019-12-12 15:43:03 -08:00

14 lines
323 B
JavaScript

import React from "react";
import { Typography } from "antd";
import HeaderContainer from "../../components/header/header.container";
export default function LandingPage() {
return (
<div>
<HeaderContainer landingHeader />
<Typography.Title>Welcome to bodyshop.app.</Typography.Title>
</div>
);
}