We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c74ae0 commit 8474119Copy full SHA for 8474119
src/components/radio/README.md
@@ -3,6 +3,22 @@ Radio buttons allow the user to select one option from a set. Use radio buttons
3
4

5
6
+### Setup
7
+Importing the symbols:
8
+```typescript
9
+import { MdUniqueSelectionDispatcher } from '@angular2-material/core';
10
+import { MD_RADIO_DIRECTIVES } from '@angular2-material/radio';
11
+```
12
+
13
+Adding providers and directives:
14
15
+@Component({
16
+ ...
17
+ directives: [MD_RADIO_DIRECTIVES],
18
+ providers: [MdUniqueSelectionDispatcher]
19
+})
20
21
22
### Examples
23
A basic radio group would have the following markup.
24
```html
0 commit comments