RSSAmplifier

Miguel Piedrafita · Feb 8, 2025

React Server Actions, for PHP

0
Sign in to vote or save

This page did not load. You can still read it on the original site — the toolbar below keeps your place in the directory.

import { php } from '@/lib/php' // [!code focus] import { startTransition, useState } from 'react' const ExamplePage = () => { const [email, setEmail] = useState('') const [password, setPassword] = useState('') const [response, setResponse] = useState(null) // [!code focus:9] const signIn = php` use Illuminate\Support\Facades\Auth; function (string $email, string $password) {…

Read on miguel.build

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.