this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

formz_demo readme

+7 -20
+2 -2
formz/README.md
··· 233 233 234 234 ## See it in action 235 235 236 - There is a demo wisp app showing a few interactive examples of how `formz` works 237 - [in the repo](). 236 + There is a [demo wisp app](https://github.com/bentomas/formz/tree/main/formz_demo) 237 + showing a few interactive examples of how `formz` works in the repo.
+5 -18
formz_demo/README.md
··· 1 1 # formz_demo 2 2 3 - [![Package Version](https://img.shields.io/hexpm/v/formz_demo)](https://hex.pm/packages/formz_demo) 4 - [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/formz_demo/) 3 + A few interactive examples of how `formz` works. If I'm missing something 4 + useful, please open an issue or PR! 5 5 6 6 ```sh 7 - gleam add formz_demo@1 8 - ``` 9 - ```gleam 10 - import formz_demo 7 + cd formz_demo 11 8 12 - pub fn main() { 13 - // TODO: An example of the project in use 14 - } 15 - ``` 16 - 17 - Further documentation can be found at <https://hexdocs.pm/formz_demo>. 18 - 19 - ## Development 20 - 21 - ```sh 22 - gleam run # Run the project 23 - gleam test # Run the tests 9 + # !! this must be run from the formz_demo directory !! 10 + gleam run 24 11 ```