Skip to content

Commit a7cb006

Browse files
committedMay 8, 2024··
docs: add Form Actions support in features
1 parent 615cdfb commit a7cb006

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ https://github.com/TheEdoRan/next-safe-action/assets/1337629/664eb3ee-92f3-4d4a-
1515

1616
- ✅ Pretty simple
1717
- ✅ End-to-end type safety
18+
- ✅ Form Actions support
1819
- ✅ Powerful middleware system
1920
- ✅ Input validation using multiple validation libraries
2021
- ✅ Advanced server error handling

‎packages/next-safe-action/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ https://github.com/TheEdoRan/next-safe-action/assets/1337629/664eb3ee-92f3-4d4a-
1515

1616
- ✅ Pretty simple
1717
- ✅ End-to-end type safety
18+
- ✅ Form Actions support
1819
- ✅ Powerful middleware system
1920
- ✅ Input validation using multiple validation libraries
2021
- ✅ Advanced server error handling

‎website/docs/introduction.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Your browser does not support the video tag.
2020

2121
- ✅ Pretty simple
2222
- ✅ End-to-end type safety
23+
- ✅ Form Actions support
2324
- ✅ Powerful middleware system
2425
- ✅ Input validation using multiple validation libraries
2526
- ✅ Advanced server error handling

‎website/src/components/landing/features.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ const features: { title: string; description: string }[] = [
55
{
66
title: "Pretty simple",
77
description:
8-
"No need to overcomplicate things. next-safe-action API is pretty simple, targeted for fast development.",
8+
"No need to overcomplicate things. next-safe-action API is pretty simple, designed with fast development in mind.",
99
},
1010
{
1111
title: "End-to-end type safety",
1212
description:
1313
"With next-safe-action you get full type safety between server and client code.",
1414
},
15+
{
16+
title: "Form Actions support",
17+
description:
18+
"next-safe-action supports Form Actions via stateful `useStateAction` hook.",
19+
},
1520
{
1621
title: "Powerful middleware system",
1722
description:

0 commit comments

Comments
 (0)
Please sign in to comment.