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