File size: 355 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as React from 'react'
// NOTE: this is not actually external by default, only in one test where we patch `next.config.js`
import { getMessagesAsync } from 'external-esm-pkg-with-async-import'

export default async function Page() {
  const messages = await getMessagesAsync()
  return (
    <main>
      <p>{messages.title}</p>
    </main>
  )
}