16 lines
235 B
JavaScript
16 lines
235 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
export default const styles = StyleSheet.create({
|
|
eventInfo: {
|
|
flexDirection: 'row',
|
|
},
|
|
eventName: {
|
|
flex: 1,
|
|
fontWeight: 'bold',
|
|
},
|
|
eventDate: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|