Showing
1 changed file
with
15 additions
and
0 deletions
front/src/Components/Helmet.js
0 → 100644
1 | +import React from "react"; | ||
2 | +import { Helmet } from "react-helmet"; | ||
3 | + | ||
4 | +export default () => { | ||
5 | + return ( | ||
6 | + <Helmet> | ||
7 | + <meta charSet="utf-8" /> | ||
8 | + <title>KhuChat</title> | ||
9 | + <link | ||
10 | + href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,300&display=swap" | ||
11 | + rel="stylesheet" | ||
12 | + /> | ||
13 | + </Helmet> | ||
14 | + ); | ||
15 | +}; |
-
Please register or login to post a comment