Skip to content

Commit

Permalink
explorer: Add conditional rendering for desktop mobile layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
deuch13 committed Aug 12, 2024
1 parent 8bfe398 commit 3e350c5
Show file tree
Hide file tree
Showing 22 changed files with 190 additions and 6,037 deletions.
3 changes: 2 additions & 1 deletion explorer/src/lib/components/__tests__/BlocksCard.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { compose, mapWith, take } from "lamb";

import { gqlBlocks } from "$lib/mock-data";
import { transformBlock } from "$lib/chain-info";

import { appStore } from "$lib/stores";
import { BlocksCard } from "..";

describe("Blocks Card", () => {
Expand All @@ -18,6 +18,7 @@ describe("Blocks Card", () => {
blocks: null,
error: null,
loading: false,
appStore: appStore
};
const baseOptions = {
props: baseProps,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { compose, mapWith, take } from "lamb";

import { gqlTransactions } from "$lib/mock-data";
import { transformTransaction } from "$lib/chain-info";
import { appStore } from "$lib/stores";

import { TransactionsCard } from "..";

Expand All @@ -18,6 +19,7 @@ describe("Transactions Card", () => {
error: null,
loading: false,
txns: null,
appStore: appStore
};
const baseOptions = {
props: baseProps,
Expand Down
Loading

0 comments on commit 3e350c5

Please sign in to comment.