Slight adjustment to tab styles + added spinner component
All checks were successful
Build, Test, and Publish (to Private NPM Registry) UI Components Library / publish (push) Successful in 1m2s

This commit is contained in:
Alan Bridgeman 2026-05-19 21:36:00 -05:00
parent d85419a0d8
commit d95bdda9ec
11 changed files with 407 additions and 14 deletions

View file

@ -28,6 +28,10 @@ app.get('/test/tabs', (req: Request, res: Response) => {
res.render('tabs', { toggleUnderline, toggleFilled });
});
app.get('/test/spinner', (req: Request, res: Response) => {
res.render('spinner');
});
app.listen(3080, () => {
console.log('Test server running on http://localhost:3080');
});