mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
18 lines
288 B
TypeScript
18 lines
288 B
TypeScript
import "./add-cluster.scss"
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
interface Props {
|
|
}
|
|
|
|
@observer
|
|
export class AddCluster extends React.Component<Props> {
|
|
render() {
|
|
return (
|
|
<div className="AddCluster">
|
|
AddCluster
|
|
</div>
|
|
)
|
|
}
|
|
}
|