Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import Counter from '../counter'
import Form from '../form'
import dec from '../actions'
import { inc } from '../actions-3'
export default function Page() {
const two = 2
return (
<>
<Counter
inc={inc}
dec={dec}
double={async (x) => {
'use server'
return x * two
}}
/>
<Form />
</>
)
}
export const runtime = 'edge'