1. 'use client';
    
  2. 
    
  3. import * as React from 'react';
    
  4. 
    
  5. export function Dynamic() {
    
  6.   return (
    
  7.     <div>
    
  8.       This client component should be loaded in a single chunk even when it is
    
  9.       used as both a client reference and as a dynamic import.
    
  10.     </div>
    
  11.   );
    
  12. }