See how a minor change to your branch name style can make you a better programmer.
Format: <type>/#<issueNumber>-<alias>
| -- code for https://youtu.be/tp_5c6jaNQE | |
| create table users ( | |
| id serial primary key, | |
| first_name varchar(255) not null, | |
| last_name text, | |
| age int, | |
| email text unique not null | |
| ); |
| const FullHeightPage = () => ( | |
| <div> | |
| Hello World! | |
| <style global jsx>{` | |
| html, | |
| body, | |
| body > div:first-child, | |
| div#__next, | |
| div#__next > div { | |
| height: 100%; |