rsf-zero 0.3.3 → 0.3.4

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,7 +29,7 @@ export const addComment = async (comment: Comment) => {
29
29
  ```tsx
30
30
  import { addComment } from './addComment.ts';
31
31
 
32
- export const AddCommentButton = (comment: Comment) =>
32
+ export const AddCommentButton = (comment: Comment) =>
33
33
  <Button onClick={() => addComment(comment)} />
34
34
  ```
35
35
 
@@ -40,6 +40,9 @@ See [/example/src/App.tsx](https://github.com/IgorNadj/rsf-zero/tree/main/exampl
40
40
  - [React Server Functions](https://react.dev/reference/rsc/server-functions)
41
41
  - Note: only the top-level `'use server'` is implemented by this framework.
42
42
 
43
+ ## Configuring
44
+ See [configuring](https://github.com/IgorNadj/rsf-zero/tree/main/docs/configuring.md)
45
+
43
46
  ## Motivation
44
47
 
45
48
  **RSF Zero** is designed to be a dead simple micro-framework.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "A minimal micro-framework with React Server Functions support",
4
4
  "author": "Igor Nadj",
5
5
  "type": "module",
6
- "version": "0.3.3",
6
+ "version": "0.3.4",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/IgorNadj/rsf-zero.git",