This is a parody of leetcode.com for designers. It's being developed live on Twitch.tv/zedashaw to demonstrate how to make a parody of a website.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pixelperfectionist/client/pages/Explore.svelte

34 lines
685 B

<script>
import { push, link } from 'svelte-spa-router';
import Validator from 'Validator';
import { onMount } from 'svelte';
import Layout from '$/client/Layout.svelte';
import api from "$/client/api.js";
api.mock({
"/api/user/profile": {
"get": [200, {"message": "OK"}],
}
});
onMount(async () => {
const [status, data] = await api.get("/api/user/profile");
if(status === 200) {
console.log("STATUS", status, "DATA", data);
} else {
console.error("Invalid response", status, data);
}
});
</script>
<style>
</style>
<Layout centered={ true }>
<h1>Explore</h1>
<a href="/problems/" use:link>Go here</a>
</Layout>