Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 1.3 KB

README.md

File metadata and controls

63 lines (49 loc) · 1.3 KB

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