15 lines
332 B
HTML
15 lines
332 B
HTML
|
|
<!-- Riot.js component for the news page (converted from app/news/page.tsx) -->
|
||
|
|
<template>
|
||
|
|
<div class="flex flex-col h-screen bg-gray-50">
|
||
|
|
<!-- Add news page content here -->
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script type="module">
|
||
|
|
import './style.css';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
// No additional state needed for this simple page
|
||
|
|
};
|
||
|
|
</script>
|