Application interface goes here.
) } ``` ```js // features/applications/applications.js import { Example } from "../../components/applications/example/Example.jsx"; export default class ApplicationsManager { static APPLICATIONS = [ // ... new Application("Example App", "example", Example), ] // ... } ```