mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Support viewing multiple epochs
This commit is contained in:
parent
f3c0b54fe9
commit
66b6b8b53d
12 changed files with 672 additions and 369 deletions
|
@ -0,0 +1,18 @@
|
|||
import clsx from "clsx";
|
||||
import { Variable } from "../../schema";
|
||||
import { VariableName } from "./VariableName";
|
||||
|
||||
export interface UnknownVariableProps {
|
||||
variable: Variable;
|
||||
}
|
||||
|
||||
export function UnknownVariable({
|
||||
variable,
|
||||
}: UnknownVariableProps): JSX.Element {
|
||||
return (
|
||||
<div className={clsx("rounded-md whitespace-nowrap space-x-1 pr-1")}>
|
||||
<VariableName className="inline-block" variable={variable} />
|
||||
<span>???</span>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue