next.js/test/production/app-dir/reference-tree-shaking/library/index.js
index.js16 lines253 B
export function Server() {
  return 'This is Server'
}

import { Foo } from './client.js'
// This is unused
export function Client() {
  return <Foo />
}

import { Bar } from './action.js'
// This is unused
export function Action() {
  return <Bar />
}
Quest for Codev2.0.0
/
SIGN IN