export default function()

in sample/src/screens/AuthScreen.js [12:34]


export default function({ navigation }) {
  return (
    <Container>
      <Content padder style={{ alignContent: 'center' }}>
        <Card>
          <CardItem>
            <Body>
              <Text>This is a modal!</Text>
              <Button
                onPress={() => {
                  navigation.goBack();
                }}
                bordered
              >
                <Text>Close</Text>
              </Button>
            </Body>
          </CardItem>
        </Card>
      </Content>
    </Container>
  );
}