14 lines
271 B
Text
14 lines
271 B
Text
// License: LGPL-3.0-or-later
|
|
import * as React from 'react';
|
|
|
|
export interface <%= file_name.camelize %>Props
|
|
{
|
|
|
|
}
|
|
|
|
export default class <%= file_name.camelize %> extends React.Component<<%= file_name.camelize %>Props, {}> {
|
|
render() {
|
|
return <div></div>;
|
|
}
|
|
}
|
|
|