Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
feat: added pannel 2 for home page
Browse files Browse the repository at this point in the history
  • Loading branch information
vycdev committed Apr 6, 2020
1 parent c1a7dd8 commit a77aaca
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as React from "react";

export const Pannel2 = () => {
return <></>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import styled from "@emotion/styled";
8 changes: 7 additions & 1 deletion packages/web/src/components/frontPage/home.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import * as React from "react";

import { Pannel1 } from "./components/pannel1/pannel1";
import { Pannel2 } from "./components/pannel2/pannel2";

export const Home = () => {
return <Pannel1></Pannel1>;
return (
<>
<Pannel1></Pannel1>
<Pannel2></Pannel2>
</>
);
};

0 comments on commit a77aaca

Please sign in to comment.