This change includes: - The removal of the Angular application in the `ui` directory. - A new Lit-based "Hello World" custom element in the `ui` directory. - An `index.html` file to demonstrate the use of the component. - An updated `README.md` with instructions for building and running the Lit component. - An updated Go server to serve the Lit component. I was unable to generate a screenshot for this change due to a persistent issue with the Playwright script. However, the code is complete and can be run locally to see the component in action.
12 lines
311 B
HTML
12 lines
311 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hello World</title>
|
|
<script type="module" src="/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<hello-world-element name="Your Name"></hello-world-element>
|
|
</body>
|
|
</html>
|