Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1013 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 1013 Bytes

Wrappid core package GitHub license Dynamic JSON Badge Release - CI

This package is a part of wrappid framework for wrappid-app projects.

This package is made to be used by wrappid/wrappid-app projects initialised by wrappid/toolkit.

Usage

Here's a basic example with HelloWorld component to demonstrate how to use wrappid/core in a wrappid-app project:

import { CoreH1 } from '@wrappid/core';

export default function HelloWorld() {
    return (
        <CoreH1> Hello World </CoreH1>
    );
}