mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
24 lines
639 B
JavaScript
24 lines
639 B
JavaScript
import React from 'react';
|
|
import { ScrollView } from 'react-native';
|
|
import navigationStyle from '../../components/navigationStyle';
|
|
import { SafeBlueArea, BlueCard, BlueText } from '../../BlueComponents';
|
|
import loc from '../../loc';
|
|
|
|
const ReleaseNotes = () => {
|
|
const notes = require('../../release-notes');
|
|
|
|
return (
|
|
<SafeBlueArea>
|
|
<ScrollView>
|
|
<BlueCard>
|
|
<BlueText>{notes}</BlueText>
|
|
</BlueCard>
|
|
</ScrollView>
|
|
</SafeBlueArea>
|
|
);
|
|
};
|
|
|
|
ReleaseNotes.navigationOptions = navigationStyle({}, opts => ({ ...opts, title: loc.settings.about_release_notes }));
|
|
|
|
export default ReleaseNotes;
|