Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7806 Rev 7815
Línea 3... Línea 3...
3
import { useForm } from "react-hook-form";
3
import { useForm } from "react-hook-form";
4
import axios from "axios";
4
import axios from "axios";
5
import Follower from "./follower/Follower";
5
import Follower from "./follower/Follower";
6
import PaginationComponent from "../../shared/PaginationComponent";
6
import PaginationComponent from "../../shared/PaginationComponent";
7
import ContentTitle from "../../shared/ContentTitle";
7
import ContentTitle from "../../shared/ContentTitle";
-
 
8
import Spinner from "../../shared/Spinner";
Línea 8... Línea 9...
8
 
9
 
Línea 9... Línea 10...
9
const Followers = ({ backendVars }) => {
10
const Followers = ({ backendVars }) => {
Línea 90... Línea 91...
90
          id="profiles-container"
91
          id="profiles-container"
91
          style={{
92
          style={{
92
            position: "relative",
93
            position: "relative",
93
          }}
94
          }}
94
        >
95
        >
-
 
96
          {
-
 
97
            loading
-
 
98
            ? <Spinner />
-
 
99
            :
95
          {followers.map(({ first_name, last_name, email, actions }, index) => (
100
            followers.map(({ first_name, last_name, email, actions }, index) => (
96
            <Follower
101
            <Follower
97
              key={index}
102
              key={index}
98
              first_name={first_name}
103
              first_name={first_name}
99
              last_name={last_name}
104
              last_name={last_name}
100
              email={email}
105
              email={email}