Skip to content

Instantly share code, notes, and snippets.

View fsdevblog's full-sized avatar
🤷‍♂️
I may be slow to respond.

fsdevblog

🤷‍♂️
I may be slow to respond.
View GitHub Profile
@fsdevblog
fsdevblog / pre-hooks.md
Last active February 21, 2021 15:05
Git, brakeman, rubocop, tests pre-hooks
  1. Создаем в корне апп папку scripts
  2. Сооздаем в ней несколько файлов со следующим содержимым

run-tests.bash

#!/usr/bin/env bash

set -e

cd "${0%/*}/.."
@fsdevblog
fsdevblog / react-jss.md
Created February 1, 2021 19:37
How to use hover in react-jss
const styles = (theme) => ({
  title: {
    color: theme.color,
    '&:hover': {
      color: theme.hoverColor,
    }
  },
})