mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-18 10:57:44 +01:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
|
|
import { render, h } from "preact";
|
||
|
|
import App from "./App";
|
||
|
|
import "./styles.css"
|
||
|
|
|
||
|
|
if (typeof window !== "undefined") {
|
||
|
|
render(<App />, document.getElementById("root"));
|
||
|
|
}
|