Skip to content

Commit 978566c

Browse files
committed
Remove some extra diffs
1 parent 0d6ff4d commit 978566c

File tree

1 file changed

+9
-22
lines changed

1 file changed

+9
-22
lines changed

docs/recipes/client-server/fable.forms.md

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,11 @@ npm add bulma
4343

4444
3. Import bulma and fable-form-simple in `Index.scss`
4545

46-
=== "Code"
47-
``` .scss title="Index.scss"
48-
@import "~bulma";
49-
@import "~fable-form-simple-bulma";
50-
...
51-
```
52-
=== "Diff"
53-
``` .diff title="Index.scss"
54-
+ @import "~bulma";
55-
+ @import "~fable-form-simple-bulma";
56-
...
57-
```
46+
``` .scss title="Index.scss"
47+
@import "~bulma";
48+
@import "~fable-form-simple-bulma";
49+
...
50+
```
5851

5952
2. Remove the Bulma stylesheet link from `./src/Client/index.html`, as it is no longer needed:
6053

@@ -70,17 +63,11 @@ With the above preparation done, you can use Fable.Form.Simple.Bulma in your `./
7063

7164
1. Open the newly added namespaces:
7265

73-
=== "Code"
74-
``` { .fsharp title="Index.fs" }
75-
open Fable.Form.Simple
76-
open Fable.Form.Simple.Bulma
77-
```
66+
``` { .fsharp title="Index.fs" }
67+
open Fable.Form.Simple
68+
open Fable.Form.Simple.Bulma
69+
```
7870

79-
=== "Diff"
80-
``` { .diff title="Index.fs" }
81-
+ open Fable.Form.Simple
82-
+ open Fable.Form.Simple.Bulma
83-
```
8471

8572
1. Create type `Values` to represent each input field on the form (a single textbox), and create a type `Form` which is an alias for `Form.View.Model<Values>`:
8673

0 commit comments

Comments
 (0)