Note.js12 lines
mainRaw'use client';
var React = require('react');
function Note() {
return 'This component was exported on a commonJS module and imported into ESM as a named import.';
}
module.exports = {
Note,
};
Loading syntax highlighting…