An open API service indexing awesome lists of open source software.

https://github.com/gapitio/utility-template

A template for creating simple components.
https://github.com/gapitio/utility-template

boilerplate boilerplate-template eslint jest prettier rollup template typescript typescript-eslint utility

Last synced: 2 months ago
JSON representation

A template for creating simple components.

Awesome Lists containing this project

README

          

# utility name

A short description of the utility

E.g. This utility adds two numbers together.
It also has a variable and function that returns "something".

## Usage

Description/example on how to use the utility.

### add

```ts
import { add } from "@gapit/utility-template";

add(2, 3); // Returns 5
```

### SOMETHING_VARIABLE

```ts
import { SOMETHING_VARIABLE } from "@gapit/utility-template";

console.log(SOMETHING_VARIABLE); // Returns "something
```