blowfish/src/renderer/components/Titlebar.jsx

12 lines
282 B
React
Raw Normal View History

2019-05-05 13:34:21 +02:00
import React from 'react'
2019-05-19 15:24:25 +02:00
import pkg from '../../../package.json'
2019-06-05 00:03:19 +02:00
import styles from './Titlebar.module.scss'
2019-05-05 13:34:21 +02:00
const Titlebar = () => (
2019-06-05 00:03:19 +02:00
<header className={styles.titlebar}>
<span className={styles.titlebarTitle}>{pkg.productName}</span>
2019-05-05 13:34:21 +02:00
</header>
)
export default Titlebar