front init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import type { JSX } from "react"
|
||||
|
||||
import { FunctionComponent } from "react"
|
||||
|
||||
import { ITemplateNameProps } from "../model/TemplateName.d"
|
||||
import styles from "./TemplateName.module.scss"
|
||||
|
||||
export const TemplateName: FunctionComponent<
|
||||
ITemplateNameProps
|
||||
> = (): JSX.Element => {
|
||||
return (
|
||||
<div className={styles.root} data-testid="TemplateName">
|
||||
TemplateName Component
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user