No description
Find a file
2023-08-22 21:03:10 -04:00
index.html Yes 2023-08-22 20:56:38 -04:00
README.md Update README.md 2023-08-22 21:03:10 -04:00

Simple bill breakdown (Will remake in either react.js or solid.js when I get the time)

How to setup

Replace KEY with your API key from https://wise.com const API_KEY = 'KEY';

If you want to change the currency conversions you can do so here:

{ name: 'Subscription #1', interval: 'Monthly', amountEUR: 24.36 },

Change the EUR to anything else for example GBP

also change this section:

const params = new URLSearchParams({
                source: 'USD',
                target: 'EUR'
            });

Example:

const params = new URLSearchParams({
                source: 'AUD',
                target: 'EUR'
            });