Skip to content

Latest commit

 

History

History

app-center

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

ProzillaOS

License Stars Forks NPM Version

About

@prozilla-os/app-center is a ProzillaOS application for browsing and installing applications.

Installation

@prozilla-os/core is required to run this application.

npm install @prozilla-os/core @prozilla-os/app-center
yarn add @prozilla-os/core @prozilla-os/app-center
pnpm add @prozilla-os/core @prozilla-os/app-center

Usage

Basic setup

import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView, AppsConfig } from "@prozilla-os/core";
import { appCenter } from "@prozilla-os/app-center";

function App() {
  return (
    <ProzillaOS
      systemName="Example"
      tagLine="Powered by ProzillaOS"
      config={{
        apps: new AppsConfig({
          apps: [ appCenter ]
        })
      }}
    >
      <Taskbar/>
      <WindowsView/>
      <ModalsView/>
      <Desktop/>
    </ProzillaOS>
  );
}

Links