blob: 0aa3b4ccc43fbd9ca4c1fe96c7d3e4940e38ecb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import * as React from 'react';
import { observer } from "mobx-react";
import { Doc } from "../../../../fields/Doc";
import { ViewBoxAnnotatableComponent, ViewBoxAnnotatableProps, ViewBoxBaseComponent } from '../../DocComponent';
import { FieldView, FieldViewProps } from '../FieldView';
import { StrCast } from '../../../../fields/Types';
import { makeObservable } from 'mobx';
@observer
export class CalendarBox extends ViewBoxBaseComponent<FieldViewProps>(){
public static LayoutString(fieldKey: string = 'calendar') {
return FieldView.LayoutString(CalendarBox, fieldKey);
}
constructor(props: any){
super(props);
makeObservable(this);
}
render(){
return (
<div></div>
);
}
}
|