blowfish/src/renderer/components/Titlebar.jsx

12 lines
281 B
React
Raw Normal View History

2019-05-05 13:34:21 +02:00
import React from 'react'
import pkg from '../../../package.json'
2019-09-08 21:47:57 +02:00
import styles from './Titlebar.module.css'
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