14 | {error} 15 |
16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /packages/player/src/stores/advancedThemeStore.ts: -------------------------------------------------------------------------------- 1 | import { create } from 'zustand'; 2 | 3 | export type AdvancedThemeFile = { 4 | path: string; 5 | name: string; 6 | }; 7 | 8 | export type AdvancedThemeState = { 9 | themes: AdvancedThemeFile[]; 10 | setThemes: (themes: AdvancedThemeFile[]) => void; 11 | }; 12 | 13 | export const useAdvancedThemeStore = create19 | {description} 20 |
21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /packages/ui/src/components/CardGrid/CardGrid.test.tsx: -------------------------------------------------------------------------------- 1 | import { render } from '@testing-library/react'; 2 | 3 | import { CardGrid } from '.'; 4 | import { Card } from '..'; 5 | 6 | describe('Card grid', () => { 7 | it('(Snapshot) Renders correctly', () => { 8 | const { container } = render( 9 |9 | This is the component development environment for the Nuclear music 10 | player. Here you can develop and test UI components in isolation. 11 |
12 |25 | {description} 26 |
27 | )} 28 |