Skip to content

Instantly share code, notes, and snippets.

View rafaelcorreiapoli's full-sized avatar
🎯
Focusing

Rafael Ribeiro rafaelcorreiapoli

🎯
Focusing
View GitHub Profile
import React, { useState } from 'react'
import { StyleSheet, View, ViewStyle } from 'react-native'
import { TextInput, RadioButton } from 'react-native-paper'
import { Text } from '@ds/Typography'
import { RadioSelect } from '@ds/RadioSelect'
import { Button } from '@ds/Button'
import { Colors } from '@resources/Colors'
export interface IUserStoryProps {
name: string
interface IArgDescription {
name: string;
type: () => any;
}
interface IResolverDescription {
name: string;
resolver: Function;
decorator: MethodDecorator;
methodArgs: IArgDescription[];