@publicai-ux/ui_kit
v1.1.0
Published
This component can be used in both React applications and traditional HTML/JS projects.
Downloads
5
Readme
Component835 Component
This component can be used in both React applications and traditional HTML/JS projects.
React Usage
import { Component835 } from '@publicai-ux/ui_kit/Component835';
import '@publicai-ux/ui_kit/styles.css';
function App() {
return (
<div>
<h1>My Application</h1>
<Component835 />
</div>
);
}HTML/JS Usage
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<link rel="stylesheet" href="node_modules/@publicai-ux/ui_kit/styles.css">
</head>
<body>
<!-- Include the component HTML -->
<div data-component="component835">
<!-- Component will be inserted here -->
</div>
<!-- Initialize the component -->
<script type="module">
import { initComponents } from '@publicai-ux/ui_kit';
// Initialize all components
initComponents();
</script>
</body>
</html>