Skip to content

Commit c5c6efb

Browse files
authored
fix: add semicolon (#13)
* fix: add semicolon * build: update version
1 parent e96caad commit c5c6efb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

assets/template/component.test.tsx.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ describe('Component', () => {
55
it('should render properly', () => {
66
const { container } = render(<Component />);
77
expect(container).toMatchSnapshot();
8-
})
9-
})
8+
});
9+
});

assets/template/types.ts.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export type Props = {
22
// component prop type
33
click: () => void;
4-
}
4+
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "React Component Generator",
44
"description": "React component boilerplate generator with typescript",
55
"publisher": "pulkitbanta",
6-
"version": "1.1.3",
6+
"version": "1.1.4",
77
"author": {
88
"name": "pulkit banta"
99
},

0 commit comments

Comments
 (0)