Files
WeatherTool/web/src/components/weatherIcons/WeatherIconStub.tsx
T

9 lines
226 B
TypeScript
Raw Normal View History

2024-02-11 21:44:29 +02:00
import { Component } from "solid-js";
/* Put this in page so browser actually downloads ltv font */
export const WeatherIconStub: Component<{}> = () => {
return (
<div class="weatherIconStub">ABCDEF</div>
)
}