It builds

This commit is contained in:
Gabe Kangas
2020-11-01 00:01:37 -07:00
parent 27f4b8b158
commit 9b89955bb7
17 changed files with 107 additions and 84 deletions

View File

@@ -19,13 +19,18 @@ function renderColumnLevel(text, entry) {
return <div style={style}>{text}</div>;
}
function renderMessage(text, entry) {
function renderMessage(text) {
return (
<Linkify>{text}</Linkify>
)
}
export default function LogTable({ logs, pageSize }) {
interface Props {
logs: object[],
pageSize: number
}
export default function LogTable({ logs, pageSize }: Props) {
const columns = [
{
title: "Level",