1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-01 15:46:40 +07:00

renamed NodePanelInner

This commit is contained in:
Fedor Katurov 2022-01-02 18:07:50 +07:00
parent 7d7afeeaf5
commit 292268dbc3
3 changed files with 4 additions and 4 deletions
src/components/node/NodeTitle

View file

@ -30,7 +30,7 @@ interface IProps {
onLock: () => void;
}
const NodePanelInner: VFC<IProps> = memo(
const NodeTitle: VFC<IProps> = memo(
({
id,
title,
@ -123,4 +123,4 @@ const NodePanelInner: VFC<IProps> = memo(
}
);
export { NodePanelInner };
export { NodeTitle };