mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
16 lines
225 B
TypeScript
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>
|
|
);
|
|
}
|
|
}
|