File size: 149 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
'use server'
export async function action1() {
console.log(
`action-log:${typeof window === 'undefined' ? 'server' : 'client'}:action1`
)
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
'use server'
export async function action1() {
console.log(
`action-log:${typeof window === 'undefined' ? 'server' : 'client'}:action1`
)
}
|