Skip to content

Commit

Permalink
Revert "LF-4481 Update Plain cell component's text type"
Browse files Browse the repository at this point in the history
This reverts commit 162da18.
  • Loading branch information
SayakaOno committed Nov 29, 2024
1 parent 9b24aae commit 3b5c511
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details, see <https://www.gnu.org/licenses/>.
*/
import { ReactNode } from 'react';
import clsx from 'clsx';
import styles from '../styles.module.scss';

export type PlainCellProps = {
text: ReactNode;
text: string | number | null;
};

const Plain = ({ text }: PlainCellProps) => {
Expand Down

0 comments on commit 3b5c511

Please sign in to comment.