mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 08:35:18 +00:00

- Lyric seek with continuos pop up on track change - Settings (UI only) - Switch (as toggler) Modified: - Home - PlaylistGenreView - TabMenu All above was modified to adjust compatibility with Lyric View & Settings
19 lines
496 B
TypeScript
19 lines
496 B
TypeScript
import { Renderer } from "@nodegui/react-nodegui";
|
|
import React from "react";
|
|
import App from "./app";
|
|
|
|
process.title = "Spotube";
|
|
Renderer.render(<App />, {
|
|
onInit(reconciler) {
|
|
if (process.env.NODE_ENV === "development") {
|
|
require("@nodegui/devtools").connectReactDevtools(reconciler);
|
|
}
|
|
},
|
|
});
|
|
// This is for hot reloading (this will be stripped off in production by webpack)
|
|
if (module.hot) {
|
|
module.hot.accept(["./app"], function () {
|
|
Renderer.forceUpdate();
|
|
});
|
|
}
|