Skip to content

Commit 878ea83

Browse files
committed
satisfy Prettier
1 parent 648b9cd commit 878ea83

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

demo-react/src/components/HomeScreen.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
import * as React from 'react';
22
import { StyleSheet } from 'react-nativescript';
33

4-
export function ExampleTabs(){
4+
export function ExampleTabs() {
55
return (
66
<tabs selectedIndex={1}>
77
{/* The bottomTab UI is created via tabStrip (the container) and tabStripItem (for each tab) */}
88
<tabStrip>
99
<tabStripItem>
1010
<label>Home</label>
11-
<image src="font://&#xf015;" className="fas"/>
11+
<image src="font://&#xf015;" className="fas" />
1212
</tabStripItem>
1313
<tabStripItem className="special">
1414
<label>Account</label>
15-
<image src="font://&#xf007;" className="fas"/>
15+
<image src="font://&#xf007;" className="fas" />
1616
</tabStripItem>
1717
<tabStripItem className="special">
1818
<label>Search</label>
19-
<image src="font://&#xf00e;" className="fas"/>
19+
<image src="font://&#xf00e;" className="fas" />
2020
</tabStripItem>
2121
</tabStrip>
2222

@@ -42,17 +42,17 @@ export function ExampleTabs(){
4242

4343
const styles = StyleSheet.create({
4444
container: {
45-
height: "100%",
46-
flexDirection: "column",
47-
justifyContent: "center",
45+
height: '100%',
46+
flexDirection: 'column',
47+
justifyContent: 'center'
4848
},
4949
text: {
50-
textAlignment: "center",
50+
textAlignment: 'center',
5151
fontSize: 24,
52-
color: "black",
52+
color: 'black'
5353
},
5454
button: {
5555
fontSize: 24,
56-
color: "#2e6ddf",
57-
},
58-
});
56+
color: '#2e6ddf'
57+
}
58+
});

0 commit comments

Comments
 (0)