chore: added tdev app

Signed-off-by: benjdlambert <ben@blam.sh>

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-09-09 10:55:13 +02:00
parent 62e3de764c
commit a2f3718c8b
4 changed files with 35 additions and 33 deletions
+12 -1
View File
@@ -14,4 +14,15 @@
* limitations under the License.
*/
// todo
import { createApp } from '@backstage/frontend-defaults';
import { createRoot } from 'react-dom/client';
import plugin from '../src';
const app = createApp({
features: [plugin],
});
const container = document.getElementById('root');
const root = createRoot(container!);
root.render(app.createRoot());