# Ramen - Core

Core Ramen JS, SCSS and Markup

## Installation

`npm i @ramenjs/core -S`

## How to use

The core JS should be used for every Ramen sub component. However for styles and markup these can be directly improted into SASS or Twig. Any styling/markup changes that require further updates than the variables allow, then the component should be copied locally.

### Core JavaScript

```
  import RamenComponent from '@ramenjs/core';
  FormStepper(config);
```

### Core SCSS

```
  @import 'node_modules/@ramenjs/core/sass/_components/_video.scss';
```
