blowfish/src/renderer/pages/preferences.jsx

19 lines
458 B
React
Raw Normal View History

2020-02-09 03:36:19 +01:00
import React from 'react'
import Link from 'next/link'
import AccountsList from '../components/AccountsList'
2020-02-09 03:36:19 +01:00
import styles from './preferences.module.css'
const Preferences = () => (
<div className={styles.preferences}>
<h1 className={styles.title}>Preferences</h1>{' '}
<Link href="/">
<a className={styles.close} title="Close Preferences">
&times;
</a>
</Link>
<AccountsList />
2020-02-09 03:36:19 +01:00
</div>
)
export default Preferences