Skip to content

Commit

Permalink
adds styleguide markdown file (#18)
Browse files Browse the repository at this point in the history
adds styleguide markdown template file #3
  • Loading branch information
LDNCWRB committed May 4, 2021
1 parent f77d104 commit 48199d3
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions styleguide.md
@@ -0,0 +1,39 @@


# Styleguide Sheet

## Layout

## Responsiveness

## Color system

## Typography

## Iconography

## Accessibility

# Code standardization

## React component structure

```javascript
// imports
import blah from "blah-blah"

// types
interface ButtonProps {
onClick: () => void;
label: string
}

// component
const Button = (label) => {
return (
...button component...
)
}

// export default
export default Button

0 comments on commit 48199d3

Please sign in to comment.