16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
import React from "react";
|
|
|
|
function Head()
|
|
{
|
|
return (
|
|
<div>
|
|
<meta charSet="utf-8"></meta>
|
|
<link href="./css/header.css" rel="stylesheet"></link>
|
|
<title>BEST PONG EVER</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"></link>
|
|
<link href="https://fonts.googleapis.com/css2?family=Rubik+Iso&display=swap" rel="stylesheet"></link>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Head; |