mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 07:26:02 +01:00
refactor(nui): Better organize components
This commit is contained in:
21
web/src/App.tsx
Normal file
21
web/src/App.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user