mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* Add step method to currency * Change amount placeholder and step, when currency select change * Lint * Add test with auth * Extract request to specific service
5 lines
131 B
JavaScript
5 lines
131 B
JavaScript
export class CurrenciesService {
|
|
get(id) {
|
|
return fetch(`/currencies/${id}.json`).then((response) => response.json());
|
|
}
|
|
}
|