Skip to content

Instantly share code, notes, and snippets.

View ahmadyogi543's full-sized avatar
👨‍💻
Keep coding 'till my eyes hurt

Ahmad Yogi ahmadyogi543

👨‍💻
Keep coding 'till my eyes hurt
  • Lambung Mangkurat University
  • Banjarmasin, Indonesia
  • 20:48 (UTC +08:00)
View GitHub Profile
import React from "react";
import { StyleSheet, Text, View } from "react-native";
function NAProgressBar({ progress = 0 }) {
return (
<View style={styles.progressbar}>
<View
style={[
styles.on,
{
<script>
$(document).ready(function () {
$('#example').DataTable({
columns: [
{data: "nama"},
{data: "nisn"},
{data: "kelas"},
{data: "sekolah"},
{data: "nilai"},
{data: "hari"},
import React ,{useState, useEffect} from 'react';
import { Fragment } from 'react/cjs/react.production.min';
import Currency from '../Currency/Currency';
import './RateCurrency.css';
const RateCurrency = () => {
const currencyFreaksAPILink = 'https://api.currencyfreaks.com/latest?apikey=YOUR_API_KEY&symbols=CAD,IDR,JPY,CHF,EUR,GBP';
const [isLoading, setIsLoading] = useState(true);
const [currencies, setCurrencies] = useState([]);