- Cleanup

This commit is contained in:
2019-08-06 01:36:08 -04:00
parent 6e71ac688a
commit b8ddc54b99
43 changed files with 361 additions and 170 deletions

View File

@@ -1,6 +1,6 @@
import { connect } from 'react-redux';
import { getActiveEvent, getDefaultEvent } from '../selectors/events.js';
import { getActiveEvent, getDefaultEvent } from '../../../../selectors/events.js';
import EventTitle from './EventTitle.js';

View File

@@ -1,6 +1,6 @@
import { StyleSheet } from 'react-native';
export default const styles = StyleSheet.create({
export const styles = StyleSheet.create({
eventInfo: {
flexDirection: 'row',
},
@@ -12,4 +12,3 @@ export default const styles = StyleSheet.create({
flex: 1,
},
});

View File

@@ -1,7 +1,7 @@
import { connect } from 'react-redux';
import { hasActiveEvent } from '../selectors/activeEvent.js';
import { hasMultipleEvents } from '../selectors/events.js';
import { hasActiveEvent } from '../../../selectors/activeEvent.js';
import { hasMultipleEvents } from '../../../selectors/events.js';
import HeaderTitle from './HeaderTitle.js';

View File

@@ -9,7 +9,7 @@ import {
import EventTitle from './EventTitle/EventTitle.container.js';
import styles from './TitleBar.styles.js';
import styles from './HeaderTitle.styles.js';
export default function HeaderTitle({
activeRoute,

View File

@@ -1,6 +1,6 @@
import { StyleSheet } from 'react-native';
export default const styles = StyleSheet.create({
export const styles = StyleSheet.create({
filterBar: {
backgroundColor: '#0F0',
flexDirection: 'row',