Skip to content

Instantly share code, notes, and snippets.

View pciacka's full-sized avatar

Przemek Ciąćka pciacka

  • RTB House
  • Gdańsk, Poland
View GitHub Profile
@pciacka
pciacka / 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>
);
}