8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { html } from "../../model/misc";
|
|
import "./background.scss";
|
|
|
|
export const generate = (): html => `
|
|
<section id="background-container">
|
|
<section id="background"></section>
|
|
</section>
|
|
`;
|