Skip to content

Commit 46d6c63

Browse files
committed
Update
1 parent 978e306 commit 46d6c63

File tree

2 files changed

+14
-44
lines changed

2 files changed

+14
-44
lines changed

articles/Getting-started.md

Lines changed: 10 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -116,44 +116,13 @@ function MyForm() {
116116

117117
## Step 3: It's your turn
118118

119-
Tweak the above example to your desire!
120-
121-
**Find your next step here:**
122-
123-
- [Inputs](/docs/FormInput)
124-
- [Using FormInput, checkboxes, radio buttons](/docs/FormInput)
125-
- [Using FormTextArea](/docs/FormTextArea)
126-
- [Using FormSelect](/docs/FormSelect)
127-
- [Using FormError](/docs/FormError)
128-
- [Toggling a field using checkbox](/docs/Toggling-a-field)
129-
- [Example: creating custom inputs like FormInput, FormSelect ...](/docs/Custom-inputs#example-custom-input)
130-
- [Using Object fields](/docs/Object-fields)
131-
- [Using Array fields](/docs/Array-fields)
132-
- [Using validators](/docs/Validation)
133-
- [Using yup](/docs/yup)
134-
- [Example: creating a submit button that disables when unmodified/error](/docs/Custom-inputs#example-form-json-component)
135-
- [Example: creating a component which shows the current form values in JSON](/docs/Custom-inputs#example-form-json-component)
136-
- [Usage with styled-components](/docs/Problem-with-styled-components)
137-
- [isSubmitting and custom form state](/docs/useForm#defaultstate-optional-issubmitting-false)
138-
139-
## Reference
140-
141-
- Classes
142-
- [FormState](/docs/FormState)
143-
- [ChildFormState](/docs/FormState#childformstate)
144-
- Hooks
145-
- [useForm](/docs/useForm)
146-
- [useChildForm](/docs/useChildForm)
147-
- [useListener](/docs/useListener)
148-
- [useAnyListener](/docs/useAnyListener)
149-
- [useArrayForm](/docs/useArrayForm)
150-
- Components
151-
- [ChildForm](/docs/ChildForm)
152-
- [Listener](/docs/Listener)
153-
- [AnyListener](/docs/AnyListener)
154-
- [ArrayForm](/docs/ArrayForm)
155-
- Form element components
156-
- [FormInput](/docs/FormInput)
157-
- [FormSelect](/docs/FormSelect)
158-
- [FormTextArea](/docs/FormTextArea)
159-
- [FormError](/docs/FormError)
119+
Tweak the above example to your desire by...
120+
121+
- [Reading more about `FormInput`](/docs/FormInput)
122+
- [Implementing validation](/docs/Validation)
123+
- [Adding object fields](/docs/Object-fields)
124+
- [Adding array fields](/docs/Array-fields)
125+
- [Toggling a field using a checkbox](/docs/Toggling-a-field)
126+
- [Creating a component which shows the current form values in JSON](/docs/Live-json-component)
127+
- [Creating a custom input like FormInput, FormSelect ...](/docs/Custom-input)
128+
- **Look at the sidebar for more...**

pages/docs/[doc].tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,16 @@ const Container = styled.div`
2525

2626
const ReactMarkdownContainer = styled.div`
2727
overflow: hidden;
28+
margin-bottom: 30em;
2829
2930
code {
3031
font-size: 1.3em;
3132
}
3233
3334
a {
34-
color: #0084ff;
35-
/* font-weight: bold; */
36-
border-bottom: 1px solid #0084ff;
35+
padding: 0.3em 0;
36+
color: #186eee;
37+
text-decoration: 1px solid underline;
3738
}
3839
3940
hr {

0 commit comments

Comments
 (0)