mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 23:46:19 +00:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { FC } from 'react';
|
|
import { useFurnitureInternalLinkWidget } from '../../../../hooks';
|
|
|
|
export const FurnitureInternalLinkView: FC<{}> = props =>
|
|
{
|
|
const {} = useFurnitureInternalLinkWidget();
|
|
|
|
return null;
|
|
};
|