Skip to content

Instantly share code, notes, and snippets.

View EduardoJM's full-sized avatar
🏠
Working from home

Eduardo Oliveira EduardoJM

🏠
Working from home
View GitHub Profile
@EduardoJM
EduardoJM / App.tsx
Created April 6, 2021 20:48
rn_text_2
interface Data {
text?: string;
}
@EduardoJM
EduardoJM / App.tsx
Created April 6, 2021 20:51
rn_text_3
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>
@EduardoJM
EduardoJM / Git Comands.md
Last active May 17, 2024 17:35
Git commands