interface: add missing lodash imports

This commit is contained in:
Liam Fitzgerald 2020-11-05 17:30:32 +10:00
parent 9d919407a0
commit 75f347aea5
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import React, { useCallback } from "react";
import _ from 'lodash';
import { Link } from "react-router-dom";
import GlobalApi from "~/logic/api/global";
import {

View File

@ -1,4 +1,5 @@
import React, { useCallback, useState } from "react";
import _ from 'lodash';
import { Box, Col, Text, Row } from "@tlon/indigo-react";
import { Link, Switch, Route } from "react-router-dom";