// @flow import React from 'react'; import { Component, Text, Button, View } from 'reactxp'; import { Layout, Container, Header } from './Layout'; import Img from './Img'; import Switch from './Switch'; import styles from './PreferencesStyles'; export type PreferencesProps = { allowLan: boolean, onChangeAllowLan: (boolean) => void, onClose: () => void, }; export default class Preferences extends Component { props: PreferencesProps; render() { return (