Skip to content

Commit

Permalink
chore(mellow-react): format
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Sep 22, 2024
1 parent 5d28948 commit 1758141
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Link, Head, useForm } from '@inertiajs/react'
import InputEmail from '@/components/InputEmail'
import InputButton from '@/components/InputButton'
import { useMemo } from 'react'

export default function ForgotPassword() {
const { data, setData, ...form } = useForm({
email: ''
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Link, Head } from '@inertiajs/react'

export default function LinkExpired() {
return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Link, Head, useForm } from '@inertiajs/react'
import { useMemo } from 'react'
import InputPassword from '@/components/InputPassword'
import InputButton from '@/components/InputButton'

export default function ResetPassword({ token }) {
const { data, setData, ...form } = useForm({
token,
Expand Down
1 change: 0 additions & 1 deletion templates/mellow-react/assets/js/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import AppLayout from '@/layouts/AppLayout'
import '~/css/homepage.css'

Index.layout = (page) => <AppLayout children={page} />

export default function Index() {
return (
<>
Expand Down

0 comments on commit 1758141

Please sign in to comment.