Skip to content

Commit

Permalink
refactor: separate sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Dec 1, 2023
1 parent 5a7936f commit a1ea9a1
Show file tree
Hide file tree
Showing 8 changed files with 346 additions and 337 deletions.
14 changes: 14 additions & 0 deletions src/data/sounds.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { nature } from './sounds/nature';
import { rain } from './sounds/rain';
import { animals } from './sounds/animals';
import { urban } from './sounds/urban';
import { things } from './sounds/things';
import { noise } from './sounds/noise';

import type { Categories } from './types';

export const sounds: {
categories: Categories;
} = {
categories: [nature, rain, animals, urban, things, noise],
};
337 changes: 0 additions & 337 deletions src/data/sounds.tsx

This file was deleted.

Loading

0 comments on commit a1ea9a1

Please sign in to comment.