Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit dd1286f

Browse files
committed
feat: add Header component
1 parent 29c1458 commit dd1286f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/components/Header.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
import type { FC } from "react";
3+
import "@/css/header.css";
4+
5+
export const Header: FC = () => (
6+
<header>
7+
<h2 style={{ color: "#666" }}>TypeScript ESlint Demo</h2>
8+
</header>
9+
);

0 commit comments

Comments
 (0)