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