pull/2/head
Zoe 7 years ago
parent efcd1c5035
commit 94bd02d437

@ -0,0 +1,28 @@
import * as React from 'react';
export interface SoucePanelProps
{
}
export interface SoucePanelState
{
}
export default class SoucePanel extends React.Component<SoucePanelProps, SoucePanelState> {
constructor(props: SoucePanelProps)
{
super(props);
this.state = {
}
}
render()
{
return (
<div>
</div>
);
}
}
Loading…
Cancel
Save