mirror of
https://github.com/Permissionless-Software-Foundation/psffpp-payments.git
synced 2026-09-22 01:02:04 -07:00
17 lines
329 B
JavaScript
17 lines
329 B
JavaScript
/*
|
|
Load <script> libraries
|
|
*/
|
|
|
|
import useScript from '../hooks/use-script'
|
|
|
|
function LoadScripts () {
|
|
// useScript('https://unpkg.com/minimal-slp-wallet?module')
|
|
|
|
// Load the libraries from the local directory.
|
|
useScript(`${process.env.PUBLIC_URL}/minimal-slp-wallet.min.js`)
|
|
|
|
return true
|
|
}
|
|
|
|
export default LoadScripts
|