mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00

- Posts, Comments, Users, etc. are always pluralized. - CSS classes are based off component names (PostsTitle -> posts-title)
8 lines
No EOL
208 B
JavaScript
8 lines
No EOL
208 B
JavaScript
import React from 'react';
|
|
|
|
const PostsLoading = props => {
|
|
const Loading = Telescope.components.Loading;
|
|
return <div className="posts-load-more-loading"><Loading/></div>
|
|
}
|
|
|
|
module.exports = PostsLoading; |