1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 3x 3x 3x 3x 3x 3x 3x | import _StudentCard from './StudentCard'; import _Content from './Content'; import _Profile from './Profile'; import _Person from './Person'; export const StudentCard = _StudentCard; export const Content = _Content; export const Profile = _Profile; export const Person = _Person; StudentCard.Content = Content; StudentCard.Profile = Profile; StudentCard.Person = Person; export default StudentCard; |