@prozilla-os/app-center
About
@prozilla-os/app-center
is a ProzillaOS application for browsing and installing applications.
Installation
@prozilla-os/core
is required to run this application.
sh
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
tsx
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>
);
}