@@ -23,25 +23,25 @@ module.exports = React.createClass({
2323 </ select >
2424 </ div >
2525 < br />
26- USD, 150, locale default - < FormatCurrency locale = { this . state . locale } currency = "USD" value = { 150 } / >
26+ USD, 150, locale default - < FormatCurrency locale = { this . state . locale } currency = "USD" > { 150 } </ FormatCurrency >
2727 < br />
28- USD, -150, style: "accounting" - < FormatCurrency locale = { this . state . locale } currency = "USD" value = { - 150 } options = { { style : "accounting" } } / >
28+ USD, -150, style: "accounting" - < FormatCurrency locale = { this . state . locale } currency = "USD" options = { { style : "accounting" } } > { - 150 } </ FormatCurrency >
2929 < br />
30- USD, 150, style: "name" - < FormatCurrency locale = { this . state . locale } currency = "USD" value = { 150 } options = { { style : "name" } } / >
30+ USD, 150, style: "name" - < FormatCurrency locale = { this . state . locale } currency = "USD" options = { { style : "name" } } > { 150 } </ FormatCurrency >
3131 < br />
32- USD, 150, style: "code" - < FormatCurrency locale = { this . state . locale } currency = "USD" value = { 150 } options = { { style : "code" } } / >
32+ USD, 150, style: "code" - < FormatCurrency locale = { this . state . locale } currency = "USD" options = { { style : "code" } } > { 150 } </ FormatCurrency >
3333 < br />
34- USD, 1.491, round: "ceil" - < FormatCurrency locale = { this . state . locale } currency = "USD" value = { 1.491 } options = { { round : "ceil" } } / >
34+ USD, 1.491, round: "ceil" - < FormatCurrency locale = { this . state . locale } currency = "USD" options = { { round : "ceil" } } > { 1.491 } </ FormatCurrency >
3535 < br />
36- EUR, 150, locale default - < FormatCurrency locale = { this . state . locale } currency = "EUR" value = { 150 } / >
36+ EUR, 150, locale default - < FormatCurrency locale = { this . state . locale } currency = "EUR" > { 150 } </ FormatCurrency >
3737 < br />
38- EUR, -150, style: "accounting" - < FormatCurrency locale = { this . state . locale } currency = "EUR" value = { - 150 } options = { { style : "accounting" } } / >
38+ EUR, -150, style: "accounting" - < FormatCurrency locale = { this . state . locale } currency = "EUR" options = { { style : "accounting" } } > { - 150 } </ FormatCurrency >
3939 < br />
40- EUR, 150, style: "name" - < FormatCurrency locale = { this . state . locale } currency = "EUR" value = { 150 } options = { { style : "name" } } / >
40+ EUR, 150, style: "name" - < FormatCurrency locale = { this . state . locale } currency = "EUR" options = { { style : "name" } } > { 150 } </ FormatCurrency >
4141 < br />
42- EUR, 150, style: "code" - < FormatCurrency locale = { this . state . locale } currency = "EUR" value = { 150 } options = { { style : "code" } } / >
42+ EUR, 150, style: "code" - < FormatCurrency locale = { this . state . locale } currency = "EUR" options = { { style : "code" } } > { 150 } </ FormatCurrency >
4343 < br />
44- EUR, 1.491, round: "ceil" - < FormatCurrency locale = { this . state . locale } currency = "EUR" value = { 1.491 } options = { { round : "ceil" } } / >
44+ EUR, 1.491, round: "ceil" - < FormatCurrency locale = { this . state . locale } currency = "EUR" options = { { round : "ceil" } } > { 1.491 } </ FormatCurrency >
4545 </ div >
4646 ) ;
4747 }
0 commit comments