Skip to content

Commit edaaefc

Browse files
committed
Add react componant template
1 parent b0fb3f7 commit edaaefc

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

templates/react/ComponentTemplate/ComponentTemplate.module.css

Whitespace-only changes.

templates/react/ComponentTemplate/ComponentTemplate.test.tsx

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React, { FunctionComponent } from 'react';
2+
import styles from "./ComponentTemplate.module.css";
3+
4+
type ComponentTemplateProps = {
5+
id:string,
6+
name:string
7+
};
8+
9+
const ComponentTemplate: FunctionComponent<ComponentTemplateProps> = ({id,name}) => {
10+
return (<div>
11+
12+
</div>);
13+
};
14+
15+
export default ComponentTemplate;

0 commit comments

Comments
 (0)