mirror of
https://github.com/Funkoala14/CreatorCenter_OOIN.git
synced 2025-06-07 22:58:14 +08:00
15 lines
423 B
JavaScript
15 lines
423 B
JavaScript
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';
|
|
import './styles/Campaign.scss';
|
|
|
|
// Add Font Awesome icons to library
|
|
library.add(faTiktok, fas, faYoutube, faInstagram);
|
|
|
|
function App() {
|
|
return <Router />;
|
|
}
|
|
|
|
export default App;
|