2022-05-17 04:02:14 +02:00
|
|
|
import { serviceItem } from '../../../tools/types';
|
|
|
|
|
import PingComponent from './PingModule';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
title: 'Modules/Search bar',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const service: serviceItem = {
|
2022-05-21 10:32:35 +02:00
|
|
|
id: '1',
|
2022-05-17 04:02:14 +02:00
|
|
|
type: 'Other',
|
|
|
|
|
name: 'YouTube',
|
|
|
|
|
icon: 'https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/youtube.png',
|
|
|
|
|
url: 'https://youtube.com/',
|
2022-06-16 15:38:50 -04:00
|
|
|
status: ['200'],
|
2022-06-20 10:40:30 +02:00
|
|
|
newTab: false,
|
2022-05-17 04:02:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Default = (args: any) => <PingComponent service={service} />;
|