Skip to content

Commit

Permalink
chore(docs): updated SortableColumns example to import SortOrder type
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Sep 8, 2021
1 parent baad174 commit b629e3e
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,6 +1,7 @@
import React, { ReactElement, useState } from "react";
import { upperFirst } from "lodash";
import {
SortOrder,
TableContainer,
Table,
TableHeader,
Expand All @@ -11,7 +12,6 @@ import {
import desserts, { Dessert } from "constants/desserts";

type DessertKey = keyof Dessert;
type SortOrder = "ascending" | "descending";

interface SortState {
data: readonly Dessert[];
Expand Down

0 comments on commit b629e3e

Please sign in to comment.