mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
Implement edit beer post functionality. Register, edit and create beer post forms are now using the same layout found in components/ui/forms/BeerPostFormPageLayout. All forms are now extracted into their own components and are now found in components. Added redirectIfLoggedIn getServerSidesProp fn for login and register pages.
24 lines
487 B
TypeScript
24 lines
487 B
TypeScript
import { FunctionComponent } from 'react';
|
|
|
|
interface FormButtonProps {
|
|
children: string;
|
|
type: 'button' | 'submit' | 'reset';
|
|
isSubmitting?: boolean;
|
|
}
|
|
|
|
const Button: FunctionComponent<FormButtonProps> = ({
|
|
children,
|
|
type,
|
|
isSubmitting = false,
|
|
}) => (
|
|
// eslint-disable-next-line react/button-has-type
|
|
<button
|
|
type={type}
|
|
className={`btn-primary btn w-full rounded-xl ${isSubmitting ? 'loading' : ''}`}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
|
|
export default Button;
|