2.0.5 • Published 9 months ago

@taygotfound/melodix v2.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

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>
  );
}

Links