You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
335 B

import React from 'react';
import MyBooks from './MyBooks';
import Shop from './Shop';
import Videos from './Videos';
import Blogs from './Blogs';
function Private() {
return (
<div className="w-full flex-1 pt-20 pb-6">
<MyBooks />
<Shop />
<Videos />
<Blogs />
</div>
)
}
export default Private;