Refactor asset loading error handling in Assets component; enable loading state reset on error; update Project component to render LoadingPage and Scene conditionally; add AssetDetailsCard component.

This commit is contained in:
2025-05-08 15:29:19 +05:30
parent 307d2eabee
commit e189ea99d3
3 changed files with 16 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react'
const AssetDetailsCard:React.FC = () => {
return (
<div className="asset-details-card-wrapper">
</div>
)
}
export default AssetDetailsCard