blowfish/src/renderer/pages/preferences.jsx

19 lines
487 B
React
Raw Permalink Normal View History

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