@xwadex/fesd-next 0.1.90 → 0.1.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/clients/index.js CHANGED
@@ -1,3 +1,2 @@
1
- "use client";
2
1
  export { default as MyClientComponent } from "./MyClientComponent";
3
2
  export { default as MyClientComponent2 } from "./MyClientComponent2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xwadex/fesd-next",
3
- "version": "0.1.90",
3
+ "version": "0.1.92",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": ["./"],
@@ -1,3 +1,4 @@
1
+ "use server";
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  export function MyComponent() {
3
4
  return _jsx("div", { children: "This is the component" });