angular/integration/ng_elements/src/slots.html
Matthieu Riegler 9d1d742f1b build: enable angular formatting on all html files
This should also be safe on any html file that isn't an angular template
2025-12-08 10:19:45 -08:00

17 lines
360 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Slot Test</title>
<base href="/" />
</head>
<body>
<test-card>
<span slot="card-header">TestCardTitle</span>
<p>TestCardContent</p>
<span slot="card-footer">TestCardFooter</span>
</test-card>
<script src="dist/bundle.js"></script>
</body>
</html>