git branch --merged | grep -v "\*" | grep -v master | xargs -n 1 git branch -D
This file contains hidden or 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
interface Data { | |
text?: string; | |
} |
This file contains hidden or 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
export default function App() { | |
const [localData, setLocalData] = useState<Data>({ | |
text: 'This is a basic example with text' | |
}); | |
return ( | |
<View style={styles.container}> | |
<Text>Open up App.tsx to start working on your app!</Text> | |
{localData.text && ( | |
<Text>{localData.text}</Text> |
OlderNewer