In addition to the Storybook for React setup, you'll also need to install these packages:
npm i -D @babel/core babel-loader css-loader style-loader
| const fs = require('fs'); | |
| const cp = require('child_process'); | |
| const util = require('util'); | |
| const path = require('path'); | |
| const exec = util.promisify(cp.exec); | |
| const writeFile = util.promisify(fs.writeFile); | |
| const prettierConfigVscode = { | |
| 'editor.codeActionsOnSave': { |
In addition to the Storybook for React setup, you'll also need to install these packages:
npm i -D @babel/core babel-loader css-loader style-loader
| import * as React from 'react'; | |
| import { theme } from './theme'; | |
| import { ThemeProvider, createGlobalStyle } from './styled-components'; | |
| const GlobalStyle = createGlobalStyle` | |
| body { | |
| font-family: Times New Roman; | |
| } | |
| `; |
| $ git remote rm origin | |
| $ git remote add origin git@github.com:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |