mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
Fix warning with illegal nesting (misnamed Footer)
This commit is contained in:
parent
39dd02d4ea
commit
93b974188f
1 changed files with 4 additions and 4 deletions
|
|
@ -1,12 +1,12 @@
|
||||||
import { TableCell, TableHead, TableRow } from "@mui/material";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { TableCell, TableHead, TableRow } from "@mui/material";
|
||||||
|
|
||||||
interface LiveResultsFooterProps {
|
interface LiveResultsHeaderProps {
|
||||||
maxQuestions: number;
|
maxQuestions: number;
|
||||||
showSelectedQuestion: (index: number) => void;
|
showSelectedQuestion: (index: number) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const LiveResultsTableFooter: React.FC<LiveResultsFooterProps> = ({
|
const LiveResultsTableHeader: React.FC<LiveResultsHeaderProps> = ({
|
||||||
maxQuestions,
|
maxQuestions,
|
||||||
showSelectedQuestion,
|
showSelectedQuestion,
|
||||||
}) => {
|
}) => {
|
||||||
|
|
@ -47,4 +47,4 @@ const LiveResultsTableFooter: React.FC<LiveResultsFooterProps> = ({
|
||||||
</TableHead>
|
</TableHead>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
export default LiveResultsTableFooter;
|
export default LiveResultsTableHeader;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue