next.js/test/e2e/app-dir/ecmascript-features/turbopack/app/export-as-string/page.js
page.js22 lines401 B
'use client'
// Test both server and client compilation of ECMAScript features.

import { 'abc' as x } from './export-as-string'

export default function Page() {
  return (
    <>
      <h1>Ecmascript features test</h1>
      <pre id="values-to-check">
        {JSON.stringify(
          {
            exportAsString: x,
          },
          null,
          2
        )}
      </pre>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN