BlueWallet/screen/settings/ReleaseNotes.tsx

19 lines
451 B
TypeScript
Raw Permalink Normal View History

2024-05-12 17:35:49 +02:00
import React from 'react';
import { ScrollView } from 'react-native';
2024-05-20 11:54:13 +02:00
2024-05-12 17:35:49 +02:00
import { BlueCard, BlueText } from '../../BlueComponents';
const ReleaseNotes: React.FC = () => {
const notes = require('../../release-notes');
return (
<ScrollView contentInsetAdjustmentBehavior="automatic" automaticallyAdjustContentInsets>
<BlueCard>
<BlueText>{notes}</BlueText>
</BlueCard>
</ScrollView>
);
};
export default ReleaseNotes;