react-code-dataset
/
next.js
/test
/e2e
/app-dir
/app-external
/node_modules
/server-action-mod
/index.js
| 'use server' | |
| export async function action1() { | |
| console.log( | |
| `action-log:${typeof window === 'undefined' ? 'server' : 'client'}:action1` | |
| ) | |
| } | |