angular/integration/ng_elements/src/slots.html
Mateusz Daniluk de777afbc5 refactor: standardize doctype declaration to <!DOCTYPE html> (#51052)
This commit standardizes the doctype declaration across all HTML files in the project to use `<!DOCTYPE html>`

PR Close #51052
2024-02-01 19:29:46 +00:00

20 lines
333 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>