aboutsummaryrefslogtreecommitdiff
path: root/packages/components/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-03-17 01:35:46 -0400
committerbobzel <zzzman@gmail.com>2025-03-17 01:35:46 -0400
commitc54d3f4338d16c907273762758853a183b543630 (patch)
tree2aa249a51a8f7beae2b3768bb97b093fdd12c7ed /packages/components/src
parent9254c4ea7e633c4e1a5eefda9a9d8d2bbe61f6b1 (diff)
hopefully last changes doc creator templates.
Diffstat (limited to 'packages/components/src')
-rw-r--r--packages/components/src/components/Template/Template.tsx14
1 files changed, 5 insertions, 9 deletions
diff --git a/packages/components/src/components/Template/Template.tsx b/packages/components/src/components/Template/Template.tsx
index 6c6b26516..50b0dec0e 100644
--- a/packages/components/src/components/Template/Template.tsx
+++ b/packages/components/src/components/Template/Template.tsx
@@ -1,12 +1,8 @@
-import * as React from 'react'
-import { IGlobalProps , getFormLabelSize } from '../../global'
+import * as React from 'react';
+import { IGlobalProps } from '../../global';
-export interface ITemplateProps extends IGlobalProps {
-
-}
+export interface ITemplateProps extends IGlobalProps {}
export const Template = (props: ITemplateProps) => {
- return <div className={`template-container`}>
- Template Component
- </div>
-} \ No newline at end of file
+ return <div className={`template-container`}>Template Component</div>;
+};