mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
19 lines
511 B
TypeScript
19 lines
511 B
TypeScript
/**
|
|
* @fileoverview Application entry point for FromChat frontend
|
|
* @description Main module that initializes all required components and styles
|
|
* @author Cursor
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
import './resources/css/style.scss';
|
|
import "mdui/mdui.css";
|
|
|
|
import "./utils/material";
|
|
import "./chat/chat";
|
|
import "./userPanel/settings";
|
|
import "./userPanel/leftpanel";
|
|
import "./core/init";
|
|
import "./userPanel/profile/profile";
|
|
import "./chat/contextMenu";
|
|
import "./chat/profileDialog";
|
|
import "./electron/electron"; |