/* eslint-disable @next/next/no-img-element */ import React from "react"; import cls from "./appSection.module.scss"; import { IPage } from "interfaces"; import FallbackImage from "components/fallbackImage/fallbackImage"; type Props = { data?: IPage[]; }; export default function AppSection({ data = [] }: Props) { return (
); }