@kadconsulting/dry
Version:
KAD Reusable Component Library
22 lines • 957 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
// // CLI Version 1.1.0
// Component Version 1.0.0
// External imports
import { forwardRef } from 'react';
import classnames from 'classnames';
// Utils
// import * as Utils from "./CurrentExampleComponent.utils.js";
// Hooks
// Styles
import './CurrentExampleComponent.scss';
const CurrentExampleComponent = forwardRef(({ id, className, passProps, ...props }, ref) => {
// ============= State =============
// ============= Variables =============
// ============= Use Effect =============
// ============= Handle Functions =============
// ============= Display Functions =============
// ============= Return =============
return (_jsx("div", { id: id, ref: ref, className: classnames(className, 'dry-currentexamplecomponent'), ...props, children: "DryCurrentExampleComponent" }));
});
export default CurrentExampleComponent;
//# sourceMappingURL=CurrentExampleComponent.js.map