rentgen/components/report-window/report-window.html

39 lines
973 B
HTML
Raw Normal View History

2021-11-07 13:57:24 +01:00
<!DOCTYPE html>
<html>
2022-01-19 13:12:28 +01:00
2022-04-25 20:02:20 +02:00
<head>
<meta charset="utf-8" />
2022-05-22 17:46:56 +02:00
<title>Rentgen - generowanie raportu</title>
2022-04-25 20:02:20 +02:00
<link
rel="stylesheet"
href="/lib/styles/fonts.css"
>
<link
rel="stylesheet"
2022-07-10 12:32:57 +02:00
href="/node_modules/survey-react/survey.min.css"
2022-04-25 20:02:20 +02:00
/>
<link
rel="stylesheet"
2022-07-10 12:32:57 +02:00
href="/node_modules/survey-react/modern.min.css"
2022-04-25 20:02:20 +02:00
/>
<link
rel="stylesheet"
href="/lib/components/report-window/report-window.css"
/>
2022-05-22 17:46:56 +02:00
<link
rel="shortcut icon"
href="../../../assets/icon-addon.svg"
type="image/x-icon"
>
2022-04-25 20:02:20 +02:00
</head>
<body>
<div id="app"></div>
2022-07-10 12:32:57 +02:00
<script src="/node_modules/react/umd/react.production.min.js"></script>
<script src="/node_modules/react-dom/umd/react-dom.production.min.js"></script>
2022-07-09 16:41:22 +02:00
<script src="/node_modules/survey-react/survey.react.min.js"></script>
2022-04-25 20:02:20 +02:00
<script src="/lib/components/report-window/report-window.js"></script>
</body>
2022-07-09 16:41:22 +02:00
</html>