Created
February 26, 2019 18:29
-
-
Save carlosrbta/97cd41c4d4d7f65784dccb829204afe3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import { withTranslations } from 'lets-i18n' | |
| import { withRouter } from 'next/router' | |
| import { Redirect, Head } from 'src/components' | |
| import NewTicketDialog from './NewTicketDialog' | |
| class TicketsPage extends React.Component { | |
| render() { | |
| return ( | |
| <Redirect.IfNotLogged> | |
| <Head css={['admin.Event.Tickets']} /> | |
| <NewTicketDialog isOpen onClose={() => console.log('onClose')} /> | |
| </Redirect.IfNotLogged> | |
| ) | |
| } | |
| } | |
| export default withTranslations(withRouter(TicketsPage)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Importar estilos
@import 'new-ticket-dialog';