Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3506 | Rev 3837 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3506 Rev 3609
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React from "react";
2
import React from "react";
3
import { useEffect, useState } from "react";
3
import { useEffect, useState } from "react";
4
import { axios } from "../../../utils";
4
import { axios } from "../../../utils";
Línea 5... Línea 5...
5
 
5
 
Línea 6... Línea 6...
6
const SuggestedGroupsHelper = ({ groupId }) => {
6
const SuggestedGroupsHelper = ({ suggestedClassname }) => {
7
 
7
 
8
  // states
8
  // states
Línea 25... Línea 25...
25
      infoFollows = infoFollows.slice(0, 3);
25
      infoFollows = infoFollows.slice(0, 3);
26
    }
26
    }
27
    return infoFollows
27
    return infoFollows
28
  }
28
  }
29
  return (
29
  return (
30
    <div className='peopleYouMayKnow'>
30
    <div className={`${suggestedClassname} peopleYouMayKnow`}>
31
      <div className="sd-title d-flex align-items-center justify-content-between">
31
      <div className="sd-title d-flex align-items-center justify-content-between">
32
        <h3>Grupos:</h3>
32
        <h3>Grupos:</h3>
33
        {suggestedGroups.length >= 3 &&
33
        {suggestedGroups.length >= 3 &&
34
          <a
34
          <a
35
            href="#"
35
            href="#"