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