pub.solar/_includes/Background.tsx

19 lines
376 B
TypeScript
Raw Normal View History

2022-10-02 18:46:42 +00:00
import Logo from './Logo.tsx';
const x1312 = (new Array(400)).fill("0x1312").join(" ");
2022-10-02 19:38:38 +00:00
2022-10-02 18:46:42 +00:00
export default () => <div
id="background"
className="ps-background ps-main--background"
>
<div
id="x1312"
className="ps-background--1312"
>{x1312}</div>
<script
2022-10-02 19:38:38 +00:00
src="/scripts/background.js"
2022-10-02 18:46:42 +00:00
async
></script>
2022-10-02 19:38:38 +00:00
<Logo className="ps-background--logo" />
2022-10-02 18:46:42 +00:00
</div>;