Administration: mein component lässt sich nicht anzeigen

Es geht um ein Plugin für Administration und zwar hab dieses Tutorial(Extending a component) gefolgt aber mein component wird nicht angezeigt.

in custom/plugins/CustomModule/src/Resources/app/administration/src/component/custom-component/my-component/index.js

import { Component } from 'src/core/shopware';

Component.extend('my-component','sw-search-bar', {
    template: ' Mein Component '
});

ich habe ein Extend von  _ sw-search-bar _ component gemacht weil ich das Search bar in meinem Module brauche

danach hab mein component “_ my-component  _” in  custom/plugins/CustomModule/src/Resources/app/administration/src/module/custom-module/index.js   genutzt

Shopware.Module.register('custom-module', {
    type: 'plugin',
    name: 'Custom',
    title: 'Custom Module',
    description: 'Module description',
    color: '#62ff80',
    icon: 'default-object-lab-flask',

    snippets: {
        
    },

    routes: {
        overview: {
            component: 'my-component',
            path: 'overview'
        }
    },

    navigation: [{
        label: 'Custom Module',
        color: '#62ff80',
        path: 'custom.module.overview',
        icon: 'default-object-lab-flask'
    }]
});

nach ausführen von :  /psh.phar administration:build  wird  nur das _ sw-search-bar _ component ohne mein Template "
## Mein Component"   angezeigt.

Wie kann ich jetzt das Problem beheben ?