mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
import React from 'react';
|
|
|
|
export class BaseSettingsControl extends React.Component <any, any> {
|
|
parent_on_change: Function;
|
|
constructor(props:any) {
|
|
super(props);
|
|
this.parent_on_change=props.on_change;
|
|
}
|
|
public get_value():any {
|
|
return null;
|
|
}
|
|
}
|