Skip to content

why source code show [binary file] in some file? #80

@KingAmo

Description

@KingAmo

my code:
src/components/BaseView/index.tsx

import { PropsWithChildren } from 'react';

export type BaseFragmentProps = PropsWithChildren<{
  isShow?: boolean;
}>;

export const BaseFragment = (props: BaseFragmentProps) => {
  const { isShow = true, children } = props;
  if (!isShow) {
    return null;
  }
  return <>{children}</>;
};

atlas output:

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions