fix typecheck

This commit is contained in:
Bastian Ike
2020-07-17 16:10:33 +02:00
committed by Bastian
parent be0f0a2cf0
commit 3adc5d3aaf
4 changed files with 12 additions and 60 deletions

View File

@@ -4,36 +4,19 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" /> <meta name="description" content="AOE Technology Radar" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<meta property="og:title" content="AOE Technology Radar" />
<meta property="og:image" content="%PUBLIC_URL%/logo.svg" />
<meta name="format-detection" content="telephone=no" /> <meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, maximum-scale=1.0, initial-scale=1.0, user-scalable=0" /> <meta name="viewport" content="width=device-width, maximum-scale=1.0, initial-scale=1.0, user-scalable=0" />
<!-- <title>AOE Technology Radar</title>
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to view the AOE Technology Radar.</noscript>
<div id="root"></div> <div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body> </body>
</html> </html>

View File

@@ -1,25 +0,0 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

View File

@@ -9,7 +9,7 @@ type BadgeProps = {
}; };
export default function Badge({ onClick, big, type, children }: React.PropsWithChildren<BadgeProps>) { export default function Badge({ onClick, big, type, children }: React.PropsWithChildren<BadgeProps>) {
const Comp = typeof onClick ? 'a' : 'span'; const Comp = onClick ? 'a' : 'span';
return ( return (
<Comp <Comp

View File

@@ -1,20 +1,14 @@
import {useState} from "react"; import {useEffect} from "react";
import {radarName} from "../config";
type SetTitleProps = { type SetTitleProps = {
title: string title: string
onSetTitle?: (title: string) => void
} }
export default function SetTitle({title, onSetTitle}: SetTitleProps) { export default function SetTitle({title}: SetTitleProps) {
const [onSetTitleState, setOnSetTitleState] = useState(() => onSetTitle) useEffect(() => {
document.title = `${title} | ${radarName}`
if (onSetTitle) { }, [title])
setOnSetTitleState(onSetTitle)
}
if (onSetTitleState) {
onSetTitleState(title)
}
return null; return null;
} }