CLOVER Website - v0.3.1
    Preparing search index...
    • A row in the student data table. It displays the student's information and allows for interaction.

      Parameters

      • param0: {
            index: number;
            isLoading?: boolean;
            onClick: (student: StudentClassData) => void;
            student: StudentClassData;
        }

        The props for the StudentRow component.

        • index: number

          The index of the student in the list.

        • OptionalisLoading?: boolean

          Whether the row is in a loading state.

        • onClick: (student: StudentClassData) => void

          The function to call when the row is clicked.

        • student: StudentClassData

          The student data to be displayed.

      Returns Element

      • The rendered row element.