19 lines
353 B
TypeScript
Executable File
19 lines
353 B
TypeScript
Executable File
|
|
import { Category } from './types';
|
|
|
|
export const DEFAULT_CATEGORIES: Category[] = [
|
|
{
|
|
id: '1',
|
|
name: 'Search',
|
|
websites: [
|
|
{
|
|
id: '1',
|
|
name: 'Google',
|
|
url: 'https://www.google.com',
|
|
icon: 'https://www.google.com/s2/favicons?domain=google.com&sz=128',
|
|
categoryId: '1',
|
|
},
|
|
],
|
|
},
|
|
];
|