Skip to content

kwossi/test-component

Repository files navigation

Instructions for build:

npm run build-library
-> should create the bundled files, cjs, es

then push to github

you can then use npm to install the library in a different vite project:

npm i git+https://github.com/kwossi/test-component.git

or from a specific branch

npm i git+https://github.com/kwossi/test-component.git#branch

import the Button component, and use with property: color: 'secondary' in App.jsx

import "./App.css";
import { Button } from "test-component";

function App() {
  return (
    <>
      <Button color="secondary">Na</Button>
    </>
  );
}

export default App;

(or use this repository: button-test)

Updates

  • importing the stylesheet from node_modules in the test repo (button-test) works, this code now renders a purple button:
import { Button } from "test-component";
import "test-component/dist/style.css";

function App() {
  return (
    <>
      <Button color="secondary">Na</Button>
    </>
  );
}

export default App;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published