Removed unnecessary return type

This commit is contained in:
Martin Berg Alstad 2023-01-14 15:02:24 +01:00
parent e37c19d882
commit 996f9fac8c

View File

@ -1,6 +1,6 @@
/* @refresh reload */
import { type Component, createSignal, JSX } from "solid-js";
import type { ButtonProps, ChildProps, TitleProps } from "../types/interfaces";
import { type Component, createSignal } from "solid-js";
import type { ButtonProps, TitleProps } from "../types/interfaces";
interface SwitchProps extends TitleProps {
defaultValue?: boolean,
@ -15,7 +15,7 @@ export const MySwitch: Component<SwitchProps> = (
className,
name,
id
}): JSX.Element => {
}) => {
const [checked, setChecked] = createSignal(defaultValue);
@ -49,7 +49,7 @@ export const Button: Component<ButtonProps> = (
onClick,
type = "button",
}
): JSX.Element => {
) => {
return (
<button title={ title } id={ id } type={ type }
class={ `border-rounded bg-cyan-900 px-2 cursor-pointer ${ className }` }