mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 00:15:48 +01:00
16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
|
|
import { serviceItem } from '../../../tools/types';
|
||
|
|
import PingComponent from './PingModule';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
title: 'Modules/Search bar',
|
||
|
|
};
|
||
|
|
|
||
|
|
const service: serviceItem = {
|
||
|
|
type: 'Other',
|
||
|
|
name: 'YouTube',
|
||
|
|
icon: 'https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/youtube.png',
|
||
|
|
url: 'https://youtube.com/',
|
||
|
|
};
|
||
|
|
|
||
|
|
export const Default = (args: any) => <PingComponent service={service} />;
|