Skip to content

Commit 5ffd324

Browse files
committed
[#44] ♻️ Add JSX.Element type
1 parent 06bd589 commit 5ffd324

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/common/input/RadioInput.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import clsx from 'clsx'
2-
import React from 'react'
32

43
interface RadioInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
54
label: string
@@ -11,7 +10,7 @@ export const RadioInput = ({
1110
checked,
1211
disabled,
1312
...props
14-
}: RadioInputProps) => {
13+
}: RadioInputProps): JSX.Element => {
1514
return (
1615
<label
1716
className={clsx(

0 commit comments

Comments
 (0)