Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import React from 'react';
import { NO_OP } from 'exotic';
import { MyProfileProps } from './typings';
declare class MyProfile extends React.PureComponent<MyProfileProps> {
static defaultProps: {
className: string;
headingLabel: string;
onSaveChanges: typeof NO_OP;
};
render(): JSX.Element;
}
export { MyProfile };
export default MyProfile;