core icon indicating copy to clipboard operation
core copied to clipboard

This is a Wrappid package repository that contains core functionalities of Wrappid Framework that enables users to use Wrappid's core features and components.

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>
    );
}