Skip to content
Snippets Groups Projects
license.js 405 B
Newer Older
import React from 'react'

import AppPage from '../common/app-page'
import AppText from '../common/app-text'
import Segment from '../common/segment'
Julia Friesel's avatar
Julia Friesel committed
import labels from '../../i18n/en/settings'

const License = () => {
  return (
mashazyu's avatar
mashazyu committed
    <AppPage title={labels.license.title}>
      <Segment last>
        <AppText>{labels.license.text}</AppText>
      </Segment>
Julia Friesel's avatar
Julia Friesel committed
}

export default License