typescript more like lesbianscript

This commit is contained in:
echo 2024-06-23 22:34:35 +03:30
parent a8bf4b8a5a
commit 47de23d0a9
2 changed files with 6 additions and 2 deletions

View file

@ -4,7 +4,11 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://dp.nea.moe/avatar/712639419785412668.png" /> <link rel="icon" type="image/svg+xml" href="https://dp.nea.moe/avatar/712639419785412668.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Solid + TS</title> <title>ehco</title>
<meta content="ECHO" property="og:title" />
<meta content="warning: this user is known to be extremely silly, proceed with caution." property="og:description" />
<meta content="https://dp.nea.moe/avatar/712639419785412668.png" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

View file

@ -1,6 +1,6 @@
// warning: this IS horrible code. its a joke. DO NOT try this at home because // warning: this IS horrible code. its a joke. DO NOT try this at home because
// your local senior programmer CAN and WILL hunt you down // your local senior programmer CAN and WILL hunt you down
// you have been warned. // you have been warned.
export default function AdvancedBr({count}: any) { export default function AdvancedBr({count}:{count:number}) {
return new Array(count).fill(null).map(_=>(<br/>)) return new Array(count).fill(null).map(_=>(<br/>))
} }