17 lines
340 B
JavaScript
17 lines
340 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>
|
|
);
|
|
}
|
|
|