Skip to content

Instantly share code, notes, and snippets.

View przemekciacka's full-sized avatar

Przemek Ciąćka przemekciacka

View GitHub Profile
@przemekciacka
przemekciacka / Card.tsx
Last active July 15, 2022 11:11
Example of React Native default approach to styling components
import React from 'react';
function Card({ children }: PropsWithChildren<unknown>) {
return (
<View style={styles.cardContainer}>
{children}
</View>
);
}