Skip to content
Snippets Groups Projects

Add lib directory

Merged Clayton, Brandon Scott requested to merge (removed):spotless into master
All threads resolved!
8 files
+ 30
301
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 0
31
<html>
<head>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="reports.css">
</head>
<body class="center">
<script src="https://d3js.org/d3.v4.min.js" charset="utf-8"></script>
<script type="module">
import { Reports } from './reports.js';
const links = [
{
text: 'Spotbugs Reports - src',
href: 'src'
},
{
text: 'Spotbugs Reports - test',
href: 'test'
}
];
Reports.createCard(links);
</script>
</body>
</html>
Loading