blowfish/src/renderer/screens/Preferences/index.jsx

17 lines
411 B
React
Raw Normal View History

2019-09-08 21:47:57 +02:00
import React from 'react'
2019-05-20 22:32:57 +02:00
import { Link } from '@reach/router'
2019-09-08 21:47:57 +02:00
import Accounts from './Accounts'
2019-09-09 00:13:38 +02:00
import styles from './index.module.css'
2019-05-20 22:32:57 +02:00
2019-09-08 21:47:57 +02:00
const Preferences = () => (
2019-09-09 00:13:38 +02:00
<div className={styles.preferences}>
<h1 className={styles.title}>Preferences</h1>{' '}
<Link className={styles.close} title="Close Preferences" to="/">
2019-09-08 21:47:57 +02:00
&times;
</Link>
<Accounts />
</div>
)
2019-05-20 22:32:57 +02:00
2019-09-08 21:47:57 +02:00
export default Preferences