mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
19 lines
451 B
TypeScript
19 lines
451 B
TypeScript
import { serviceItem } from '../../../tools/types';
|
|
import PingComponent from './PingModule';
|
|
|
|
export default {
|
|
title: 'Modules/Search bar',
|
|
};
|
|
|
|
const service: serviceItem = {
|
|
id: '1',
|
|
type: 'Other',
|
|
name: 'YouTube',
|
|
icon: 'https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/youtube.png',
|
|
url: 'https://youtube.com/',
|
|
status: ['200'],
|
|
newTab: false,
|
|
};
|
|
|
|
export const Default = (args: any) => <PingComponent service={service} />;
|