1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+whats-new/whats-new.tsx
Roman b9089a7c5e more react dummy files
Signed-off-by: Roman <ixrock@gmail.com>
2020-07-08 13:32:47 +03:00

16 lines
225 B
TypeScript

import "./whats-new.scss"
import React from "react";
interface Props {
}
export class WhatsNew extends React.Component {
render() {
return (
<div className="WhatsNew">
WhatsNew
</div>
);
}
}