Here is an example of using the Radio Group in a plain html page:
<html>
<head>
<link href="https://developer.temenos.com/uux/base.css" rel="stylesheet" />
<script src="https://developer.temenos.com/uux/unified-ux-web.min.js"></script>
</head>
<body>
<uwc-radio-group label="My Radio Group"></uwc-radio-group>
<script>
const group = document.querySelector("uwc-radio-group");
group.options = [{ label: "One" }, { label: "Two" }, { label: "Three" }];
</script>
</body>
</html>