Skip to content

Commit

Permalink
prints
Browse files Browse the repository at this point in the history
  • Loading branch information
henninghall committed Apr 19, 2024
1 parent 2b3df91 commit 25bb995
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions examples/Rn071/src/examples/Advanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,17 @@ export default class Advanced extends Component {
text={'time mode'}
/>
<View style={{width: '100%', height: 2, backgroundColor: '#eee'}} />
<MicroText
text={`time format: ${uses24HourClock() ? '24h' : '12h'}`}
/>
<View style={{}}>
<MicroText
text={`time format: ${uses24HourClock() ? '24h' : '12h'}`}
/>
<MicroText
text={`minimumDate: ${readableDate(this.state.minimumDate)}`}
/>
<MicroText
text={`maximumDate: ${readableDate(this.state.maximumDate)}`}
/>
</View>
</View>
</View>
);
Expand Down

0 comments on commit 25bb995

Please sign in to comment.