Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3629 Rev 3634
Línea 43... Línea 43...
43
          display: { xs: currentConversation ? 'block' : 'none', md: 'block' }
43
          display: { xs: currentConversation ? 'block' : 'none', md: 'block' }
44
        }}
44
        }}
45
      >
45
      >
46
        <MessagesList
46
        <MessagesList
47
          conversation={currentConversation}
47
          conversation={currentConversation}
48
          onClose={() => setCurrentConversation(null)}
48
          onClose={setCurrentConversation}
49
          onDelete={() =>
49
          onDelete={deleteConversation}
50
            currentConversation?.delete_url && deleteConversation(currentConversation.delete_url)
-
 
51
          }
-
 
52
        />
50
        />
53
      </Grid>
51
      </Grid>
54
    </Grid>
52
    </Grid>
55
  );
53
  );
56
};
54
};