react-code-dataset
/
next.js
/crates
/next-custom-transforms
/tests
/fixture
/next-font-with-directive
/use-server
/input.js
| 'use server' | |
| import React from 'react' | |
| import { Inter } from '@next/font/google' | |
| const inter = Inter() | |
| export async function myCoolServerAction() { | |
| return <div className={inter.className}>Hello from server action</div> | |
| } | |