6 lines
122 B
JavaScript
6 lines
122 B
JavaScript
|
"use client";
|
||
|
|
||
|
// CJS-ESM async module
|
||
|
module.exports = (m => {
|
||
|
return m.Counter;
|
||
|
}) |> import('../Counter.js').then(%);
|