CreatorCenter_OOIN/src/App.jsx

15 lines
423 B
React
Raw Normal View History

2025-05-09 07:03:19 +08:00
import { faTiktok, faYoutube, faInstagram } from '@fortawesome/free-brands-svg-icons';
import { library } from '@fortawesome/fontawesome-svg-core';
import { fas } from '@fortawesome/free-solid-svg-icons';
import Router from './router';
2025-05-15 10:42:39 +08:00
import './styles/Campaign.scss';
2025-05-08 10:39:32 +08:00
2025-05-09 07:03:19 +08:00
// Add Font Awesome icons to library
library.add(faTiktok, fas, faYoutube, faInstagram);
2025-05-08 10:39:32 +08:00
function App() {
2025-05-09 07:03:19 +08:00
return <Router />;
2025-05-08 10:39:32 +08:00
}
export default App;