mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
10 lines
242 B
React
10 lines
242 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
import { withEditionSpecificComponent } from '@/modules/common/helpers/withEditionSpecificComponent';
|
||
|
|
|
||
|
|
function FixWithAi() {
|
||
|
|
return <></>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default withEditionSpecificComponent(FixWithAi, 'AiBuilder');
|