mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
22 lines
584 B
TypeScript
22 lines
584 B
TypeScript
|
|
import Notifications from "./features/notifications/NotificationWrapper";
|
||
|
|
import CircleProgressbar from "./features/progress/CircleProgressbar";
|
||
|
|
import Progressbar from "./features/progress/Progressbar";
|
||
|
|
import TextUI from "./features/textui/TextUI";
|
||
|
|
import InputDialog from "./features/dialog/InputDialog";
|
||
|
|
import ContextMenu from "./features/menu/ContextMenu";
|
||
|
|
|
||
|
|
const App: React.FC = () => {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Progressbar />
|
||
|
|
<CircleProgressbar />
|
||
|
|
<Notifications />
|
||
|
|
<TextUI />
|
||
|
|
<InputDialog />
|
||
|
|
<ContextMenu />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default App;
|