main
js 11 lines 199 Bytes
Raw
1 'use client';
2
3 var React = require('react');
4
5 function Note() {
6 return 'This component was exported on a commonJS module and imported into ESM as a named import.';
7 }
8
9 module.exports = {
10 Note,
11 };