@taygotfound/melodix
v2.0.5
Published
Music App for ProzillaOS
Downloads
85
Maintainers
Readme
Melodix
About
@taynotfound/Melodix
is a Music app for ProzillaOS.
Changelog
The Changelog can be found here
Installation
@prozilla-os/core
is required to run this application.
$ npm install @prozilla-os/core @taynotfound/Melodix
$ yarn add @prozilla-os/core @taynotfound/Melodix
$ pnpm add @prozilla-os/core @taynotfound/Melodix
Usage
Basic setup
import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView, AppsConfig } from "@prozilla-os/core";
import { Melodix } from "@taynotfound/Melodix";
function App() {
return (
<ProzillaOS
systemName="Example"
tagLine="Powered by ProzillaOS"
config={{
apps: new AppsConfig({
apps: [ Melodix ]
})
}}
>
<Taskbar/>
<WindowsView/>
<ModalsView/>
<Desktop/>
</ProzillaOS>
);
}