Skip to content

Instantly share code, notes, and snippets.

View ciacka's full-sized avatar

Przemek Ciąćka ciacka

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div style="position: relative; width: 100%; padding-top: 56.25%;">
<iframe
id="bunny-player"
@ciacka
ciacka / 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>
);
}