🆙 Detached Theme from original NitroV3

This commit is contained in:
duckietm
2026-06-10 07:23:02 +02:00
parent b2000ba1a9
commit e5ca4936ea
739 changed files with 49 additions and 7774 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
import { FC } from 'react';
import { useCatalogClassicStyle } from '../../hooks';
import { PurseClassicView } from './PurseClassicView';
import { PurseModernView } from './PurseModernView';
export const PurseView: FC<{}> = props =>
{
const [ classicStyle ] = useCatalogClassicStyle();
return classicStyle ? <PurseClassicView /> : <PurseModernView />;
return <PurseModernView />;
};