This file contains 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
desc 'DO REALLY AWESOME STUFF' | |
task :awesome_stff do | |
survey_count = 0; | |
response_count = 0; | |
missing_renders = 0; | |
matched_renders = 0; | |
mismatched_renders = 0; | |
puts 'Fetching all dem responses' |
This file contains 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
/* eslint-disable no-shadow, react/prop-types */ | |
/* This is just temporary as this onboarding needs to be refactored */ | |
import React, { useState } from 'react'; | |
import { StyleSheet, Text } from 'react-native'; | |
import { ScreenView } from '../../shared'; | |
import { dimensions } from '../../../styles'; | |
import { colors } from '../../../styles/colors'; | |
import FirstName from './FirstName'; |