fix for production build
This commit was merged in pull request #18.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import React from "react";
|
||||
import { GetStarted as Main, Header, Footer } from "../components";
|
||||
|
||||
const GetStartedPage: React.FC = () => {
|
||||
const GetStartedPage :React.FC = () => {
|
||||
return (
|
||||
<>
|
||||
<Header hideSidebar={true} hideMenu={true} />
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { FC } from "react";
|
||||
import React from "react";
|
||||
import {
|
||||
Hero,
|
||||
Header,
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
MidFooter,
|
||||
} from "../components";
|
||||
|
||||
const HomePage: FC = () => {
|
||||
const HomePage: React.FC = () => {
|
||||
return (
|
||||
<>
|
||||
<TopHeader />
|
||||
@@ -16,7 +16,7 @@ const HomePage: FC = () => {
|
||||
<Hero />
|
||||
<Requirements />
|
||||
<TopFooterOne />
|
||||
<MidFooter />
|
||||
<MidFooter />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user