mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 21:57:43 +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"));
|
|
}
|