November 2019
Beginner
804 pages
20h 1m
English
Go ahead and create a songs-list.tsx file under frontend/src/components.
Then, add the following skeleton to this file:
import React, {useEffect} from 'react';
import Container from 'react-bootstrap/Container';
type Props = {
};
export const SongsList = (props: Props) => {
useEffect(() => {
console.log('Songs List: component rendered');
});
return (
<Container className='lf-songs'>
</Container>
);
};
So far, there's not much to it.
Still, you can already add it to the Home view:
Read now
Unlock full access